%f %.2f %lf %.2lf的含义

%f表示单精度浮点型(float,默认保留),%lf表示双精度浮点型(double,默认保留6位);

.2表示只保留小数点后两位数,下面举例

#include

int main()
{
    float a = 11.1;
    double b = 22.22;
    printf("%f %.2f %lf %.2lf", a, a, b, b);
    return 0;
}

输出结果为11.1000000,11.10,22.220000,22.22

同理我们也可得出%0.3f,也就是保留小数点后三位

#include

int main()

{

float a=12.3;

double b= 45.56;

printf("%f %.3f %lf %.3lf",a,a,b,b);

return 0;

}

输出结果为12.3000000,12.300,45.560000,45.560;

你可能感兴趣的:(c#)