本帖最後由 戴唯陞 於 2018-11-24 17:02 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- string food [5]={"炸雞","薯條","蛋糕","喝水","喝西北風"};
-
- int ball;
- srand(time(NULL));
- cout<<"來抽抽看 今天晚餐吃甚麼?"<<endl;
- system("pause");
- system("cls");
-
- for(int i=0; i<=10; i++)
- {
- ball=rand()%5;
- if(i%2==0)
- cout<<"抽籤中 請稍後"<<endl;
- else
-
-
- cout<<"抽籤中 請稍後"<<endl;
- cout<<food[ball]<<endl;
- system("cls");
- }
- cout<<"吃 "<<food[ball]<<endl<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |