1. 程式人生 > >C++換行符-----'\n'&endl

C++換行符-----'\n'&endl

這是一段程式碼

   #include <iostream>

    using namespace std;

    int main()
    {
        cout << "Hello world!" << endl;
        return 0;
    }

and

#include <iostream>

using namespace std;

int main()
{
    cout << "Hello word! " << '\n';


    return 0;
}

and

#include <iostream>

using namespace std;

int main()
{
    cout << "Hello word! " << '\n';


    return 0;
}

輸出結果都是一樣的;
在這裡插入圖片描述
區別
endl確保程式繼續執行前重新整理輸出,也就是說將其立馬顯示在螢幕上;
而且,endl是在標頭檔案iostream中定義的,並且在名稱空間std中。
\n 有可能在輸入資訊後才會出現提示,\n被稱為轉義字元