|
发表于 2021-10-12 11:17:51
|
显示全部楼层
本楼为最佳答案
- #include <stdio.h>
- int main()
- {
- const char *str =
- "*********************\n"
- " very good!\n"
- "*********************\n";
- printf("%s", str);
- return 0;
- }
- #include <stdio.h>
- int main()
- {
- const char *str =
- "*********************\n\
- very good!\n\
- *********************\n";
- printf("%s", str);
- return 0;
- }
- #include <stdio.h>
- int main()
- {
- printf("%s", \
- "*********************\n\
- very good!\n\
- *********************\n");
- return 0;
- }
- #include <stdio.h>
- int main()
- {
- printf("%s", \
- "*********************\n"
- " very good!\n"
- "*********************\n");
- return 0;
- }
复制代码 |
|