標題:
2023/09/08 作業
[打印本頁]
作者:
鄭繼威
時間:
2023-9-8 21:00
標題:
2023/09/08 作業
本帖最後由 鄭繼威 於 2023-9-9 16:46 編輯
1.
[作業] 函式的建立與執行 (五) - 罰寫小幫手
2.
[作業] 函式的建立與執行 (七) - 計算次方
!
作者:
蔡沛倢
時間:
2023-9-10 09:40
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2