- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int a(int i,string y)
- {
- cout<<"剩餘次數:"<<i<<endl;
- if(i==0)
- {
- cout<<"抄寫結束"<<endl;
- _sleep(5000);
- }
- else
- {
- i--;
- cout<<y<<endl;
- _sleep(500);
- a(i,y);
- }
- }
- int main()
- {
- int i;
- string y;
- cout<<"請問要罰寫多少次?";
- cin>>i;
- cout<<"請問罰寫內容為?";
- cin>>y;
- cout<<endl;
- cout<<"將開始抄寫"<<endl;
- _sleep(5000);
- a(i,y);
- system("pause");
- return 0;
- }
複製代碼 |