我正在用 C++ 构建一个简单的骰子游戏,您可以在其中与计算机对战,在游戏开始之前您可以下注让我们说 100,如果您赢了,您应该赢得双倍 = 200,如果您输了,100 将从中提取您拥有的帐户
我有这些变量:
int bet = 0;
int account = 0
我试图用这个来制作我所说的:
if (computer > rounds)
{
wcout<< "Im sorry the computer won this round you have this amount left on your account:" << account - bet << endl;
}
else if (player > rounds)
{
wcout<< "Gratz you won this round now you have:" << account + bet*2 << endl;
}
它没有成功,我一直在试图找出原因,感谢任何帮助!