Rumah  >  Soal Jawab  >  teks badan

c++ - cout << toupper(c);为什么打印时是一串数字?

    string s19 = "hello, world!";
    for(auto c: s19)
    {
        //输出大写形式
        if(!ispunct(c) || !isspace(c))
        {
            cout << toupper(c);
        }
    }
这样写打印时是一串数字。而如果像下面这样:
c = toupper(c);
cout << c;  
打印时则正确,请问大家这是怎么回事?

高洛峰高洛峰2714 hari yang lalu542

membalas semua(1)saya akan balas

  • 天蓬老师

    天蓬老师2017-04-17 11:47:25

    原因很简单。

    请注意 toupper 的返回值:http://www.cplusplus.com/reference/cctype/toupper/

    balas
    0
  • Batalbalas