返回列表 發帖

2023/09/08 作業

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int a(int i,string y)
  5. {  
  6.     cout<<"剩餘次數:"<<i<<endl;
  7.     if(i==0)
  8.     {
  9.        cout<<"抄寫結束"<<endl;
  10.        _sleep(5000);
  11.     }
  12.     else
  13.     {
  14.         i--;
  15.         cout<<y<<endl;
  16.         _sleep(500);
  17.         a(i,y);
  18.     }
  19. }
  20. int main()
  21. {
  22.     int i;
  23.     string y;
  24.     cout<<"請問要罰寫多少次?";
  25.     cin>>i;
  26.     cout<<"請問罰寫內容為?";
  27.     cin>>y;
  28.     cout<<endl;
  29.     cout<<"將開始抄寫"<<endl;
  30.     _sleep(5000);
  31.     a(i,y);
  32.     system("pause");
  33.     return 0;
  34. }
複製代碼

TOP

返回列表