gpt4 book ai didi

c++ - C++访问冲突

转载 作者:太空宇宙 更新时间:2023-11-04 14:55:35 25 4
gpt4 key购买 nike

我对 C 语言有点生疏,有人要求我编写一个快速的小应用程序以从 STDIN 中获取字符串并将字母“a”的每个实例替换为字母“c”。我觉得我的逻辑是正确的(很大程度上要感谢阅读本网站上的帖子,我可能会补充),但我不断收到访问冲突错误。

这是我的代码:

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
printf("Enter a string:\n");
string txt;
scanf("%s", &txt);
txt.replace(txt.begin(), txt.end(), 'a', 'c');
txt.replace(txt.begin(), txt.end(), 'A', 'C');
printf("%s", txt);
return 0;
}

我真的可以使用一些洞察力。非常感谢!

最佳答案

scanf 不知道 std::string 是什么。您的 C++ 代码应如下所示:

#include <string>
#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
cout << "Enter a string:" << endl;
string txt;
cin >> txt;
txt.replace(txt.begin(), txt.end(), 'a', 'c');
txt.replace(txt.begin(), txt.end(), 'A', 'C');
cout << txt;
return 0;
}

关于c++ - C++访问冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16512652/

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