返回列表 發帖

抽籤程式

本帖最後由 tonyh 於 2014-3-22 16:51 編輯

發揮創意想想看, 抽籤程式在日生活中甚麼時候可以派上用場呢?
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[5]={"漢堡","牛排","意麵","炒飯","大便"};
  7.     int ball;
  8.     srand(time(NULL));
  9.     cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
  10.     cout<<"今天晚餐\吃甚麼?"<<endl<<endl;
  11.     system("pause");
  12.     system("cls");       //清畫面
  13.     for(int i=0; i<=150; i++)
  14.     {
  15.         ball=rand()%5;  //產生介於 0~4 的隨機亂數
  16.         if(i%2==0)
  17.             cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
  18.         else
  19.             cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  20.         cout<<name[ball]<<endl;
  21.         system("cls");
  22.     }
  23.     cout<<"吃: "<<name[ball]<<"!"<<endl<<endl;
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

返回列表