返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     for(int i=1;i<=110;i++)
  8.     {
  9.     if(i>=1 && i<=10)
  10.         cout<<"去"<<endl;
  11.     if(i>=11 && i<=20)
  12.         cout<<"  死"<<endl;
  13.     if(i>=21 && i<=30)   
  14.         cout<<"    吧"<<endl;
  15.     if(i>=31 && i<=40)   
  16.         cout<<"去"<<endl;
  17.     if(i>=41 && i<=50)   
  18.         cout<<"去死"<<endl;
  19.     if(i>=51 && i<=60)   
  20.         cout<<"去死吧"<<endl;
  21.     if(i>=61 && i<=70)   
  22.         cout<<"   "<<endl;
  23.     if(i>=81 && i<=90)   
  24.         cout<<"去死吧"<<endl;
  25.     if(i>=91 && i<=100)   
  26.         cout<<"   "<<endl;
  27.     if(i>=101 && i<=110)   
  28.         cout<<"去死吧"<<endl;
  29.         system("cls");
  30.     }
  31.     goto re;
  32.     system("pause");
  33.     return 0;   
  34. }
複製代碼

TOP

返回列表