- #include<iostream>
- #include<cstdlib>
- #include<time.h>
- using namespace std;
- int main()
- {
- re:
- int count=0,big=0,small=0,number=0,again=0,flag=0;
- srand(time(NULL));
- cout<<"請輸入最高幾號:";
- cin>>big;
- if(big<=0)
- {
- flag = 1;
- goto re3;
- }
- cout<<"請輸入最低幾號:";
- cin>>small;
- if(small<=0||big<small)
- {
- flag = 1;
- goto re3;
- }
- cout<<"請輸入抽幾個人:";
- cin>>count;
- if(count<=0)
- {
- flag = 1;
- goto re3;
- }
- re3:
- if(flag==0)
- {
- cout<<"抽籤中";
- for(int j=1;j<=5;j++)
- {
-
- cout<<rand()%(big-small+1)+small;
- _sleep(100);
- system("cls");
- }
-
- for(int i=1;i<=count;i++)
- {
- number = rand()%(big-small+1)+small;
- cout<<"第"<<i<<"個號碼是:"<<number<<endl;
- }
- re2:
- cout<<"還要抽嗎?(1)要(2)不要:";
- cin>>again;
- if(again==1)
- goto re;
- else if(again != 2)
- {
- cout<<"輸入錯誤!";
- goto re2;
- }
- }
- else
- {
- cout<<"你輸入錯誤了"<<endl;
- goto re;
- }
- system("pause");
- return 0;
- }
複製代碼 |