- include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int player,computer;
- string meth[]={"剪刀","石頭","布"};
- cout<<"請出拳! (1)"+meth[0]+" (2)"+meth[1]+" (3)"+meth[2]+":";
- cin>>player;
- cout<<"你出"+meth[player-1]+"!"<<endl;
- srand(time(NULL));
- computer = rand()%3+1;
- cout<<"電腦"+meth[computer-1]+"!"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |