recherche

Maison  >  Questions et réponses  >  le corps du texte

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 Il y a quelques jours467

répondre à tous(1)je répondrai

  • ringa_lee

    ringa_lee2017-04-17 13:47:01

    转义序列

    有五种类型的转义序列:简单、八进制、十六进制、Unicode (UTF-8) 和 Unicode (UTF-16)。转义序列可以是以下任一项:

    可以参考 字符串和字符文本 (C++)

    répondre
    0
  • Annulerrépondre