赞
踩
printf
函数来实现,可以直接在字符串中包含空格,或者使用转义字符来控制格式。以下是几种常见的输出空格的方法:- #include <stdio.h>
-
- int main() {
- printf("Hello World\n"); // 输出 "Hello World"
- printf("Hello World\n"); // 输出 "Hello World",有多个空格
- return 0;
- }
%s
和空格如果你想在输出中插入空格,可以在字符串中使用空格:
- #include <stdio.h>
-
- int main() {
- char str1[] = "Hello";
- char str2[] = "World";
-
- printf("%s %s\n", str1, str2); // 输出 "Hello World"
- return 0;
- }
\t
输出制表符(Tab)如果想要更大的间隔,可以使用制表符 \t
:
- #include <stdio.h>
-
- int main() {
- printf("Hello\tWorld\n"); // 输出 "Hello World",中间有一个制表符的空格
- return 0;
- }
如果需要输出多个连续的空格,可以使用循环:
- #include <stdio.h>
-
- int main() {
- for (int i = 0; i < 5; i++) {
- printf(" "); // 输出5个空格
- }
- printf("Hello World\n");
- return 0;
- }
还可以使用格式控制符来输出特定数量的空格:
- #include <stdio.h>
-
- int main() {
- printf("Hello%*sWorld\n", 5, ""); // 输出 "Hello World",中间有5个空格
- return 0;
- }
%*s
用于指定输出的宽度,5
是宽度,“” 是要输出的字符串(这里是空字符串)。Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。