標題:
函式的建立與執行 (三)
[打印本頁]
作者:
陳品肇
時間:
2019-7-6 14:42
標題:
函式的建立與執行 (三)
試以自訂函式的方式, 設計一個專門顯示 "歡迎光臨" 的程式, 只需輸入次數, 即可重複顯示.
執行畫面如下:
[attach]6832[/attach]
作者:
吳孟書
時間:
2019-7-6 15:04
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
void tri(int x)
{
for(int i=1;i<=x;i++)
{
cout<<"歡迎光臨"<<endl;
}
}
int main()
{
int a;
cout<<"請輸入次數:";
cin>>a;
tri(a);
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-7-6 15:07
#include<iostream>
#include<cstdlib>
using namespace std;
void tri(int x)
{
for(int i=1;i<=x;i++)
{
cout<<"歡迎光臨"<<endl;
}
}
int main()
{
int a;
cout<<"輸入次數:";
cin>>a;
tri(a);
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-7-6 15:09
#include<iostream>
#include<cstdlib>
using namespace std;
void tri(int x)
{
for(int i=1;i<=x;i++)
{
cout<<"歡迎光臨"<<endl;
}
}
int main()
{
int a;
cout<<"輸入次數:";
cin>>a;
tri(a);
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-7-6 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
void bp(int);
int main()
{
int n;
cout<<"請輸入次數:"<<endl;
cin>>n;
bp(n);
system("pause");
return 0;
}
void bp(int n)
{
for(int j=1;j<=n;j++)
{
cout<<"◆歡迎光臨~~~◆" <<endl;
}
}
複製代碼
作者:
曲書辰
時間:
2019-7-6 15:11
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
void re(int a)
{
for(int i=1;i<=a;i++)
{
cout<<"歡迎光鈴~~~"<<endl;
}
}
int main()
{
int a;
cout<<"輸入次數:";
cin>>a;
re(a);
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-7-19 11:33
#include<iostream>
#include<cstdlib>
using namespace std;
void wel(int n)
{
for(int i=1;i<=n;i++)
{
cout<<"歡迎光臨~"<<endl;
}
}
int main()
{
int a;
cout<<"請輸入次數: ";
cin>>a;
wel(a);
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2