- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int player, computer;
- string meth[3]= {"剪刀", "石頭", "布"};
- cout<<"請出拳! (1)"+meth[0]+"(1)"+meth[1]+"(2)"+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;
- }
複製代碼 |