- #include <iostream>
- #include <cstdlib>
- #include <time.h>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int food=0;
- cout<<"抽籤中"<<endl;
- cout<<"========="<<endl;
- cout<<"今晚吃啥?"<<endl;
- string mora[]={"麵","牛肉","漢堡","披薩","炸雞","牛肉飯","奶昔","鵝肉","吐司","豬腳麵"};
- food=(rand()%10)+1;
- cout <<"吃:"<<mora[food-1]<<endl;
- system("pause");
- return 0;
- }
複製代碼 |