返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x, y;
  7.     srand(time(NULL));
  8.     x=rand()%6+1;
  9.     cout<<"小恒的擲骰子遊戲 v1.0"<<endl;
  10.     cout<<"電腦擲出的點數為"<<x<<"點!"<<endl;
  11.     cout<<"輪到你擲了..."<<endl;
  12.     system("pause");
  13.     y=rand()%6+1;
  14.     cout<<"你擲出的點數為"<<y<<"點!"<<endl;
  15.     if(x>y)
  16.     {
  17.         cout<<"哎呀! 你輸了!"<<endl;
  18.     }else if(y>x)
  19.     {
  20.         cout<<"恭喜! 你贏了!"<<endl;  
  21.     }else
  22.     {
  23.         cout<<"平手!"<<endl;
  24.     }
  25.     system("pause");   
  26.     return 0;
  27. }
複製代碼

TOP

返回列表