在C语言中,可以使用不同的格式化字符串来实现不同形式的printf
输出。下面是一些常见的示例:
printf("Hello, \nworld!"); // 输出带换行符的字符串
printf("Hello, \tworld!"); // 输出带制表符的字符串
printf("Hello, \"world!\""); // 输出带双引号的字符串
int num = 10;
printf("The number is %d", num); // 输出整数
printf("The number is %5d", num); // 输出宽度为5的整数,不足部分用空格填充
printf("The number is %05d", num); // 输出宽度为5的整数,不足部分用0填充
float num = 3.14;
printf("The number is %f", num); // 输出浮点数
printf("The number is %.2f", num); // 输出浮点数并保留2位小数
printf("The number is %e", num); // 以指数形式输出浮点数
char ch = 'A';
printf("The character is %c", ch); // 输出字符
printf("The string is %s", "Hello"); // 输出字符串
int width = 5;
printf("The number is %*d", width, num); // 输出宽度由变量控制的整数
这些示例展示了printf
函数的一些常见用法,你可以根据自己的需求选择合适的格式化字符串来实现不同形式的输出。
上一篇:不同行上的多个条件
下一篇:不同行数的数据框合并问题