- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name[]={"被人告白","採到黃金","撿到一千元","被趕出家門","當上總統"};
- cout<<"☆★☆ 抽籤程式-神準算命 ☆★☆"<<endl<<endl;
- int today;
- srand(time(NULL));
- system("pause");
- for(int i=0; i<=150; i++)
- {
- today=rand()%5;
- if(i%2==0)
- cout<<"☆★☆ 抽籤中 ☆★☆"<<endl;
- else
- cout<<"★☆★ 抽籤中 ★☆★"<<endl;
- cout<<name[today];
- system("cls");
- }
- cout<<"你今天會: "<<name[today]<<"!"<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |