本人菜鸟,求大神帮忙,谢谢
// test2.cpp : Defines the entry point for the console application.//
#include <iostream>
#define Player1 0;
#define Player2 1;
using namespace std;
int main(int argc, char* argv[])
{
int choice1,choice2;
cout<<"请选择石头(0),布(1),剪刀(2):"<<endl;
cout<<"玩家1:";
cin>>choice1;
cout<<"玩家2:";
cin>>choice2;
switch(choice2-choice1)
{
case 0:
cout<<"平局"<<endl;
break;
case 1:
case -2:
cout<<"玩家2胜利"<<endl;
break;
case 2:
case -1:
cout<<"玩家1胜利"<<endl;
break;
}
// cout<<"玩家1胜利了"<<endl;
return 0;
}
仿照上面程序编写下面的程序
//这个程序不能停止,一直到有玩家从键盘输入Q.
//仿照这个程序,再写一个15 20的程序。
//玩家1,2 可以出 0 5 10 这三个数(用手势表示)
//同时玩家1,2要一起叫出一个数可以是 0 5 10 15 20
//玩家1,2用手势表示的数相加,如果等于玩家1叫出的数则玩家1胜利,反之玩家2胜利,
//如果两个人叫出相同的数,则平局,如果都 没叫准则再来,如果一方胜利则游戏停止。