\n换行符有什么作用,具体是怎样起作用的?
发布网友
发布时间:2022-04-23 16:53
我来回答
共2个回答
热心网友
时间:2023-10-09 20:11
\n换行符, 就是屏幕输出字符 或 打印机输出字符 时,指挥 输出 装置 另起一行的意思。
就像用笔书写文章,一段写完,要换一行,作为分段。如果不换行,那么上下段落就连在一起了。
例如,若有 \n换行符:
printf("Demensions: ....\n",...);
printf("Volume (cubic inches): ....);
输出:
Demensions: 12x10x8
Volume (cubic inches): 960
若没有 \n换行符:
printf("Demensions: ....",...); //没有 \n换行符
printf("Volume (cubic inches): ....);
输出:
Demensions: 12x10x8Volume (cubic inches): 960
(若没有 \n换行符Volume这行与上面一行连在一起不分彼此。)
热心网友
时间:2023-10-09 20:11
输出\n时就换到下一行。例如,
printf("Hello\nhow are you");
输出的结果是:
Hollo
how are you