返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int food=0;
  9.     cout<<"抽籤中"<<endl;
  10.     cout<<"========="<<endl;
  11.     cout<<"今晚吃啥?"<<endl;
  12.     string mora[]={"麵","牛肉","漢堡","披薩","炸雞","牛肉飯","奶昔","鵝肉","吐司","豬腳麵"};
  13.     food=(rand()%10)+1;
  14.     cout <<"吃:"<<mora[food-1]<<endl;
  15.     system("pause");
  16.     return 0;     
  17. }
複製代碼

TOP

返回列表