c语言中,比如一数5开平方根后的结果应该当看作是小说还是整数来看待?
发布网友
发布时间:2022-05-14 12:38
我来回答
共2个回答
热心网友
时间:2023-10-17 06:09
#include<iostream>
#include<cmath>
using namespace std;
void main()
{
double a;
a=sqrt(5.0);
cout<<a<<endl;
}
#include<iostream>
#include<cmath>
using namespace std;
void main()
{
int a;
a=sqrt(5.0);
cout<<a<<endl;
}
视情况而定,希望对你有用
热心网友
时间:2023-10-17 06:09
浮点数,也就是小数