0

我对 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;
}

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

4

3 回答 3

7

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;
}
于 2013-05-12T22:28:59.050 回答
2

请不要将 C 的任何半记忆位拖入其中。这是一个可能的 C++ 解决方案:

#include <string>
#include <iostream>

int main()
{
    for (std::string line;
         std::cout << "Enter string: " &&
         std::getline(std::cin, line); )
    {
        for (char & c : line)
        {
            if (c == 'a') c = 'c';
            else if (c == 'A') c = 'C';
        }

        std::cout << "Result: " << line << "\n";
    }
}

(您当然可以使用std::replace,尽管我的循环只遍历字符串一次。)

于 2013-05-12T22:31:27.607 回答
0

看来您正在将 c 与 c++ 混合

#include <iostream>
#include <string>  
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 << endl;
    return 0; }

别担心,这是一个常见的错误,将 c 与 c++ 混合使用,也许查看enter link description here是一个好的开始

于 2013-05-12T22:34:31.733 回答