#include
using std::endl;
using std::cout;
using std::cin;
#include
using std::rand;
using std::srand;
#include
using std::time;
int select();
int pcSelect();
int main()
{
if (select() == pcSelect())
cout<<"恭喜你,猜对了。"< else
cout<<"很失望,猜错了。"<return 0;
}
int select()
{
int n;
do
{
cout<<"请输入你的选择 (1- 石头,2- 剪刀,3- 布: ";
cin>>n;
switch(n)
{
case 1:
cout<<"你猜的是石头."< case 2:
cout<<"你猜的是剪刀."< case 3:
cout<<"你猜的是布."< default:
cout<<"输入的选择不存在。"< }
}while(n<=0 || n > 3);
return n;
}
int pcSelect()
{
int i;
srand(time(0));
i =1 + rand()%3;
switch (i)
{
case 1: cout<<"电脑猜的是石头."< case 2: cout<<"电脑猜的是剪刀."< case 3: cout<<"电脑猜的是布."< }
return i;
}
--------------------next---------------------
阅读(1141) | 评论(0) | 转发(0) |