1.0 单精度 float 7位有效数字
2.0双精度 double 15~16位有效数字
#include<*isotream>
using namespace std;
int main(){
float a=3.14f;
double b=3.14;
cout<<a<<endl;
cout<<b<<endl;
return 0;
}
1.0 单精度 float 7位有效数字
2.0双精度 double 15~16位有效数字
#include<*isotream>
using namespace std;
int main(){
float a=3.14f;
double b=3.14;
cout<<a<<endl;
cout<<b<<endl;
return 0;
}