gpt4 book ai didi

c++ - 按字符读取字符

转载 作者:行者123 更新时间:2023-11-28 01:10:17 24 4
gpt4 key购买 nike

我的问题有点奇怪,但是如何在不使用 scanf() 的情况下逐个字符地从键盘字符中读取一些字符串呢?和 getchar()仅通过使用 operator<< ,例如我想更改每个字母 a我读了 *提前致谢

最佳答案

char c;
std::string output;


while(std::cin >> c)
{
if(c == 'a')
c = '*';

output += c;

}

关于c++ - 按字符读取字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3788386/

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