C++의 줄 바꿈은 무엇인가요?
n 줄 바꿈, 커서를 다음 줄의 시작 부분으로 이동하고
endl, 버퍼 슬롯의 내용을 console;
r Enter, 커서는 현재 줄의 시작 부분으로 이동하고 다음 줄로 이동하지 않습니다. 출력이 계속되면 이 줄의 이전 내용이 하나씩 덮어쓰여집니다.
#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; }
추천 과정:
C 언어 튜토리얼위 내용은 C++에서 줄 바꿈은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!