#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <string.h>
#include <cmath>//应用log函数
#define N 100005
#define ll long long
using namespace std;
//printf和cout输出的不同
int main()
{
double t=0.62;
double c=0.32;
int a=t;
int b=c;
cout<< t<<c<<endl;
printf("%.lf %.lf\n",t,c);//输出 1 0
printf("%lf %lf\n",t,c);//输出 0.62 0.32
printf("%d %d\n",a,b);//输出0 0,不会四舍五入
return 0;
}
四舍五入上printf和cout的区别(进一步分析%.lf和%lf)
最新推荐文章于 2024-10-09 00:13:35 发布