標題:
[隨堂測驗] 函式的建立與執行 (二)
[打印本頁]
作者:
王瑞喻
時間:
2020-10-27 20:25
標題:
[隨堂測驗] 函式的建立與執行 (二)
試以自訂函式的方式, 設計一個專門顯示 "歡迎光臨" 的程式, 只需輸入次數, 即可重複顯示.
執行畫面如下:
作者:
駱顗安
時間:
2020-10-28 17:28
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome(int x)
{
for(int i=1;i<=x;i++)
cout<<"歡迎光臨!"<<endl;
}
int main()
{
int a;
cin>>a;
welcome(a);
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2