编程学习网为您整理以下代码实例,主要实现:控制输出字段宽度,希望可以帮到各位朋友。
浮点值的格式说明符的一般形式如下:
%[wIDth][.precision][modifIEr]f
方括号代表可选规范。
可以省略wIDth
或.precision
或modifIEr
或这些的任意组合。wIDth
值是一个整数,指定包含空格的字符总数。precision
值是一个整数,指定小数点后的小数位数。
当输出的值是long double
类型时,修饰符部分为L,否则省略它。
#include <stdio.h>
int main(voID)
{
float total_length = 10.0f; // In feet
float count = 4.0f; // Number of equal pIEces
float pIEce_length = 0.0f; // Length of a pIEce in feet
pIEce_length = total_length/count;
printf("%f feet %f pIEces %f feet.\n",total_length, count, pIEce_length);
printf("%8.2f foot %5.0f pIEces %6.2f feet.\n",total_length, count, pIEce_length);
return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!