如一下代码所示,在输出数据时候cout
和printf
区别。
double ans = 0, max = 135.349, min = 3.88633;
ans = max * 2086458231 / min;
cout << ans << endl;
printf("%lf", ans);
输出
7.26652e+010
72665192664.000000
为什么会有这样的不同呢?
習慣沉默2017-05-16 13:26:08
c++的格式化输出问题,cout默认输出浮点数的格式不是%lf,如果要设置输出的格式,可以参考下面的链接
http://en.cppreference.com/w/...
#include <iostream>
int main() {
double ans = 0, max = 135.349, min = 3.88633;
ans = max * 2086458231 / min;
std::cout << ans << std::endl; // 7.2665e+10
std::cout.setf(std::ios::scientific);
std::cout << ans << std::endl; // 7.266497e+10
std::cout.unsetf(std::ios::scientific);
std::cout.setf(std::ios::fixed);
std::cout << ans << std::endl; // 72664965432.070602
printf("%lg\n", ans); // 7.2665e+10
printf("%lf\n", ans); // 72664965432.070602
return 0;
}
巴扎黑2017-05-16 13:26:08
cout是C++的语法,printf是C语言了,不过C保留了,在cstdio里面
结果不同时因为cout对超长的浮点数默认采用了保留N位+科学计算法的形式,不过cout也是可以用参数格式化输出的,比如
cout << setiosflags(ios::fixed) << f
就不用科学计数法了,更多的参数你可以查阅手册
printf也可以格式化,非常方便