gpt4 book ai didi

c++ - 读入 ascii 扩展字符

转载 作者:行者123 更新时间:2023-11-28 07:02:03 28 4
gpt4 key购买 nike

我在读取扩展 ASCII 字符并将其转换为十进制值时遇到问题。我试过这样做:

unsigned char temp;
while(temp = cin.get != EOF)
{
cout << (int)temp << endl;
}

但随后它打印出的只是数字 1;

最佳答案

问题出在这里:

while(temp = cin.get() != EOF)

您正在为 temp 分配 cin.get() != EOF 的真值。在遇到 EOF 之前,您只会看到 1 作为输出。

将其更改为:while((temp = cin.get()) != EOF)

会更接近您的期望。

关于c++ - 读入 ascii 扩展字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22292636/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com