Was sind die Zeilenumbrüche in C++?
Endl, geben Sie den Inhalt aus Pufferslot zur Konsole;
r Enter, der Cursor bewegt sich zum Anfang der aktuellen Zeile und wechselt nicht zur nächsten Zeile. Wenn die Ausgabe fortgesetzt wird, wird der vorherige Inhalt dieser Zeile überschrieben um eins;#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-Sprach-Tutorial
Das obige ist der detaillierte Inhalt vonWas sind die Zeilenumbrüche in C++?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!