標題:
函式的建立與執行 (四) - 罰寫小幫手
[打印本頁]
作者:
王瑞喻
時間:
2020-10-27 20:30
標題:
函式的建立與執行 (四) - 罰寫小幫手
試以自訂函式的方式,完成該程式。
譬如:自訂一個 print(string,int) 的函式
作者:
駱顗安
時間:
2020-11-18 18:00
#include<iostream>
#include<cstdlib>
using namespace std;
void print(string x,int y)
{
for(int i=0;i<y;i++)
cout<<x<<endl;
}
int main()
{
int t;
char str[50];
cout<<"罰寫內容:";
cin.getline(str,50);
cout<<"罰寫字數:";
cin>>t;
print(str,t) ;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2