搜尋

首頁  >  問答  >  主體

c++中反斜杠'\'的问题

#include <iostream>

using namespace std;

int main()
{
    cout << (int)'\1' << endl;
    cout << 1 << endl;

    cout << (int)'\11' << endl;
    cout << 11 << endl;

    return 0;
}

请问,(int)'11'这样输出为什么是9啊?

怪我咯怪我咯2774 天前466

全部回覆(1)我來回復

  • ringa_lee

    ringa_lee2017-04-17 13:47:01

    轉義序列

    有五種類型的轉義序列:簡單、八進位、十六進位、Unicode (UTF-8) 和 Unicode (UTF-16)。轉義序列可以是下列任一項:

    可以參考 字串和字元文字 (C++)

    回覆
    0
  • 取消回覆