返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.         int count=0,big=0,small=0,number=0,again=0,flag=0;
  9.         srand(time(NULL));
  10.         cout<<"請輸入最高幾號:";
  11.         cin>>big;
  12.         if(big<=0)
  13.         {
  14.                 flag = 1;
  15.             goto re3;
  16.         }
  17.         cout<<"請輸入最低幾號:";
  18.         cin>>small;
  19.         if(small<=0||big<small)
  20.         {
  21.                 flag = 1;
  22.             goto re3;
  23.         }
  24.         cout<<"請輸入抽幾個人:";
  25.         cin>>count;
  26.         if(count<=0)
  27.         {
  28.                 flag = 1;
  29.             goto re3;
  30.         }
  31.         re3:
  32.         if(flag==0)
  33.         {
  34.             cout<<"抽籤中";
  35.             for(int j=1;j<=5;j++)
  36.             {
  37.                     
  38.                     cout<<rand()%(big-small+1)+small;
  39.                     _sleep(100);
  40.                     system("cls");
  41.                 }
  42.             
  43.             for(int i=1;i<=count;i++)
  44.                 {
  45.                     number = rand()%(big-small+1)+small;
  46.                     cout<<"第"<<i<<"個號碼是:"<<number<<endl;            
  47.                 }
  48.                 re2:
  49.                 cout<<"還要抽嗎?(1)要(2)不要:";
  50.                 cin>>again;
  51.                 if(again==1)
  52.                     goto re;
  53.                 else if(again != 2)
  54.                 {
  55.                 cout<<"輸入錯誤!";
  56.                 goto re2;
  57.             }
  58.         }
  59.         else
  60.         {
  61.                 cout<<"你輸入錯誤了"<<endl;
  62.                 goto re;
  63.         }
  64.     system("pause");
  65.         return 0;
  66. }
複製代碼

TOP

返回列表