- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main ()
- {
- string name[5]={"Rose 4.5","Rose 4","Lebron II","D HOWARD 5","ADIpure 2"};
- int ball;
- srand(time(NULL));
- cout<<"要買哪雙鞋?"<<endl;
- system("pause");
- system("cls");
- for(int i=0;i<=150;i++)
- {
- ball=rand()%5;
- if(i%2==0)
- cout<<"***抽籤中***"<<endl;
- else
- cout<<"***抽籤中***"<<endl;
- cout<<name[ball];
- system("cls");
- cout<<"買"<<name[ball]<<"!"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |