好吧所以我正在编写一个小程序控制台程序并遇到一个小问题:我正在构建一个程序,其中一个用户可以想到一个单词并将其翻译成下划线(Word = ____)而另一个用户必须猜测这些字母(用户猜测W;程序首先删除_并插入W“W___”直到完整的单词出来)所以现在我的代码看起来像这样:
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int main()
{
string wort;
cout << "Bitte gebe ein Wort ein: ";
cin >> wort;
string gesucht = "";
if (wort.length() == 0 || wort.length() > 63) {
cout << "Bitte gebe ein gueltiges Wort ein.\n";
}
else {
for (unsigned int a = 1; a <= wort.length(); a++) {
gesucht.insert(0, "_");
}
}
cout << "Folgendes Wort wird gesucht: " << gesucht << endl;
int versuche = 11;
char eingabe;
cin >> eingabe;
if (wort.find(eingabe) == string::npos) {
versuche--;
cout << "Folgendes Wort wird gesucht: " << gesucht << ", du hast noch " << versuche << " Fehlversuche.\n";
}
else {
gesucht.erase(wort.find(eingabe));
gesucht.insert(wort.find(eingabe), eingabe);
cout << gesucht << endl;
}
return 0;
}
问题在于这部分:
else {
gesucht.erase(wort.find(eingabe));
gesucht.insert(wort.find(eingabe), eingabe);
cout << gesucht << endl;
}
它不会让我使用wort.find(eingabe)
作为 Where 所以也许我试图将其转换为整数,但我不知道如何
PS:代码是德语,因此对德国人来说更容易理解
答案 0 :(得分:1)
导致问题的部分应如下所示:
else {
size_t pos = wort.find(eingabe);
gesucht.erase(pos, 1);
gesucht.insert(pos, 1, eingabe);
cout << gesucht << endl;
}
因为您正在处理单个字符而不是字符串,所以您应该使用.erase
和.insert
的正确重载
答案 1 :(得分:0)
好的家伙所以我解决了我的问题,我刚刚添加了1,所以它知道应该添加多少个字符,因为eingabe是一个字符。 这就是工作代码的外观:
else {
gesucht.erase(wort.find(eingabe), 1);
gesucht.insert(wort.find(eingabe), 1, eingabe);
cout << gesucht << endl;
}