返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[]={"被人告白","採到黃金","撿到一千元","被趕出家門","當上總統"};               
  7.     cout<<"☆★☆ 抽籤程式-神準算命 ☆★☆"<<endl<<endl;
  8.     int today;
  9.     srand(time(NULL));
  10.     system("pause");
  11.     for(int i=0; i<=150; i++)
  12.     {
  13.         today=rand()%5;
  14.         if(i%2==0)
  15.            cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;   
  16.         else
  17.            cout<<"★☆★ 抽籤中 ★☆★"<<endl;
  18.         cout<<name[today];
  19.         system("cls");
  20.     }
  21.     cout<<"你今天會: "<<name[today]<<"!"<<endl<<endl;
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

TOP

返回列表