首頁 >後端開發 >C#.Net教程 >c++換行符號有哪些

c++換行符號有哪些

angryTom
angryTom原創
2019-11-04 15:22:5017395瀏覽

c++換行符號有哪些

c 換行符號有哪些

\n 換行,遊標移到下一行的開頭;

endl,把緩衝槽的內容輸出到控制台;

\r 回車,遊標移到目前行的開頭,不會換到下一行,如果接著輸出的話,本行以前的內容會被逐一覆蓋;

#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<<"First"<<"\n"<<"Second"<<endl; 
    cout<<"First123"<<"\r"<<"Second"<<endl;  
    cout<<"这是换"<<endl<<"行符";
    return 0;  
}

結果:

this is the first line
this is the third linee
this is the fifth line
First
Second
Second23
这是换
行符
Presss any key to continue

推薦課程:C語言教程

######################################################

以上是c++換行符號有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn