本帖最後由 tonyh 於 2014-3-22 16:51 編輯
發揮創意想想看, 抽籤程式在日生活中甚麼時候可以派上用場呢?- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[5]={"漢堡","牛排","意麵","炒飯","大便"};
- int ball;
- srand(time(NULL));
- cout<<"☆★☆ 抽籤程式 ☆★☆"<<endl;
- cout<<"今天晚餐\吃甚麼?"<<endl<<endl;
- system("pause");
- system("cls"); //清畫面
- for(int i=0; i<=150; i++)
- {
- ball=rand()%5; //產生介於 0~4 的隨機亂數
- if(i%2==0)
- cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
- else
- cout<<"★☆★ 抽籤中 ★☆★"<<endl;
- cout<<name[ball]<<endl;
- system("cls");
- }
- cout<<"吃: "<<name[ball]<<"!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |