- #include<ctime>
- #include<cstdlib>
- #include<iostream>
- using namespace std;
- int main(){
- srand(time(NULL));
- string f[]={"拉麵","壽司","漢堡","三明治","肉臊飯"};
- cout<<"今天吃什麼?"<<endl;
- system("pause");
- for(int i=1;i<=30;i++){
- if(i%2==1){
- cout<<"★☆★ 抽籤中 ★☆★"<<endl;}
- else{
- cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;}
- cout<<f[rand()%5]<<endl;
- _sleep(10);
- system("cls");
- }
- cout<<"今天吃"<<f[rand()%5]<<endl;
-
- system("pause");
- return 0;
-
- }
複製代碼 |