返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6. string name[5]={"Rose 4.5","Rose 4","Lebron II","D HOWARD 5","ADIpure 2"};
  7. int ball;   
  8. srand(time(NULL));
  9. cout<<"要買哪雙鞋?"<<endl;
  10. system("pause");
  11. system("cls");
  12. for(int i=0;i<=150;i++)
  13. {
  14. ball=rand()%5;        
  15.    if(i%2==0)      
  16.     cout<<"***抽籤中***"<<endl;
  17.     else   
  18.     cout<<"***抽籤中***"<<endl;
  19.     cout<<name[ball];
  20.     system("cls");
  21.     cout<<"買"<<name[ball]<<"!"<<endl;   
  22. }   
  23. system("pause");   
  24. return 0;   
  25. }
複製代碼

TOP

返回列表