回车与换行的区别
作者:互联网
回车与换行的区别
符号 ASCII码 意义
\n 10 换行
\r 13 回车CR
windows – 回车 == 先回车后换行
windows下的点一下回车,效果是:回车换行,就是\r\n
‘\r’ 回车,回到当前行的行首,而不会换到下一行,如果接着输出的话,本行以前的内容会被逐一覆盖;
‘\n’ 换行,换到当前位置的下一行,而不会回到行首;
#include <iostream>
using namespace std;
int main()
{
cout << "this is the first line\n";
cout << "this is the second line\r";
cout << "this is the third line\n";
cout << "this is the fouth line\r";
cout << "this is the fifth line\n";
cout << "end" ;
return 0;
}
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-45su8uEG-1643246633594)(C:\Users\赵晓鹏\AppData\Roaming\Typora\typora-user-images\image-20220127091704381.png)]
Unix
unix系统下的回车一下就是一个\n
Mac
每行结尾是“<回车>”,即"\r"
标签:区别,换行,一行,行首,windows,防盗链,回车 来源: https://blog.csdn.net/weixin_45919793/article/details/122712131