我对 c++ 相当陌生。作为一个项目,我正在重写我用 python 编写的一个小游戏(我从来没有让它正常工作)。在编译期间,我收到此错误:错误:'operator-=' 不匹配</p>
我知道这个运算符存在于 c++ 中,那么为什么会出现这个错误?
代码:
void rpg() {
cout << "This mode is not yet complete. It only contains a dungeon so far. I'm still working on the rest!";
dgn();
}
void dgn() {
int whp = 100;
int mahp = 100;
int hhp = 100;
string m;
int mhp;
cout << "There are three passages. Do you take the first one, the second one, or the third one? (Give your answer in numbers)";
int psg;
cin >> psg;
switch (psg) {
case 1:
m = "Troll";
mhp = 80;
break;
case 2:
m = "Goblin";
mhp = 35;
break;
case 3:
m = "Dragon";
mhp = 120;
}
cout << "A ";
cout << m;
cout << " appears!";
dgnrd(m, mhp, whp, mahp, hhp);
}
void dgnrd(string m, string mhp, int whp, int mahp, int hhp) {
bool alive = true;
while (alive) {
string wa;
string ma;
string ha;
cout << "What does Warrior do? ";
cin >> wa;
cout << "What does Mage do? ";
cin >> ma;
cout << "What does Healer do? ";
cin >> ha;
if (wa == "flameslash") {
cout << "Warrior used Flame Slash!";
mhp -= 20;
}
else if (wa == "dragonslash" && m == "Dragon") {
cout << "Warrior used Dragon Slash!";
mhp -= 80;
}
else if (wa == "dragonslash" && (m == "Troll" || m == "Goblin")) {
cout << "Warrior's attack did no damage!";
}
if (ma == "icicledrop") {
cout << "Mage used Icicle Drop!";
mhp -= 30;
mahp -= 10;
whp -= 10;
hhp -= 10;
}
else if (ma == "flamesofhell") {
cout << "Mage used Flames of Hell!";
mhp -= 75;
mahp -= 50;
whp -= 50;
hhp -= 50;
}
else if (ma == "punch") {
cout << "Mage used Punch!";
mhp -= 5;
}
}
}