返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int dinner;
  8.     cout<<"***抽籤程式***"<<endl;
  9.     cout<<"今天晚餐\吃甚麼?"<<endl;
  10.     string name[3]={"牛排","咖哩飯","義大利麵"};
  11.     system("pause");
  12.     for(int i=1; i<=30;i++)
  13.     {
  14.       if(i%2==1)
  15.           cout<<"*%*抽籤中*%*"<<endl;
  16.       else
  17.           cout<<"%*%抽籤中%*%"<<endl;
  18.       cout<<name[rand()%3]<<"!"<<endl;
  19.       _sleep(50);
  20.       system("cls");
  21.     }
  22.     dinner=rand()%3+1;
  23.     cout<<"吃: "<<name[dinner-1]<<"!"<<endl;
  24.     cout<<endl;
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表