用C语言写一个游戏。用户选择拳数(1,石头2,剪刀3,布),电脑随机。

#包含?& ltstdio.h & gt

#包含?& ltstdlib.h & gt

#包含?& lttime.h & gt

int?主()

{

int?玩家;

int?电脑;

int?playerWin?=?0,?计算机赢?=?0,?平衡?=?0;

scanf_s(?" %d ",& amp玩家?);

而(?玩家?!=?0?)

{

srand(?时间(?0?)?);

电脑?=?兰德()?%?3?+?1;

如果(?电脑?==?玩家?)

{

printf(?" %s\n ",“领带”?);

balance++;

}

不然呢?如果(?(?玩家?==?1?& amp& amp?电脑?==?2?)?||?(?玩家?==?2?& amp& amp?电脑?==?3?)?||?(?玩家?==?3?& amp& amp?电脑?==?1?)?)

{

printf(?" %s\n ",“玩家赢了”?);

player win++;

}

其他

{

printf(?" %s\n ",“电脑胜利”?);

computer win++;

}

scanf_s(?" %d ",& amp玩家?);

}

printf(?"玩家赢了%d次,电脑赢了%d次,抽了%d次\n "?playerWin,?computerWin?平衡?);

回归?0;

}