標題:
[隨堂測驗] 函式的建立與執行 (二)
[打印本頁]
作者:
鄭繼威
時間:
2022-5-19 22:05
標題:
[隨堂測驗] 函式的建立與執行 (二)
試以自訂函式的方式, 設計一個專門顯示 "歡迎光臨" 的程式, 只需輸入次數, 即可重複顯示.
執行畫面如下:
本帖隱藏的內容需要回復才可以瀏覽
作者:
高昀昊
時間:
2022-5-21 11:46
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome()
{
cout<<"歡迎光臨"<<endl;
}
int main()
{
int x;
cout<<"請輸入次數:";
cin>>x;
for(int i=x; i>0; i--)
welcome();
system("pause");
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-5-21 11:57
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome()
{
cout<<"歡迎光臨"<<endl;
}
int main()
{
int x;
cout<<"請輸入次數:";
cin>>x;
for(int i=x; i>0; i--)
welcome();
system("pause");
return 0;
}
複製代碼
作者:
孫子傑
時間:
2022-5-21 11:59
#include<iostream>
#include<cstdlib>
using namespace std;
void w(int c){
for(int i=1;i<=c;i++)
{
cout<<"歡迎光臨"<<endl;
}
}
int main(){
int x;
cout<<"請輸入次數:";
cin>>x;
w(x);
system("pause");
return 0;
}
複製代碼
作者:
許馹東
時間:
2022-5-21 11:59
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome()
{
cout<<"歡迎光臨"<<endl;
}
int main()
{
int x;
cout<<"請輸入次數:";
cin>>x;
for(int i=x; i>0; i--)
welcome();
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-5-21 11:59
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//welcome函式
void welcome(int x){
for(int i=1;i<=x;i++){
cout<<"歡迎光臨"<<endl;
}
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//int myPlus
//沒有回傳值時 void
//主函式
int main(){
int a; //次數
cout<<"請輸入次數:";
cin>>a;
welcome(a);
system("pause");
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2022-5-21 12:00
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome()
{
cout<<"歡迎光臨"<<endl;
}
int main()
{
int x;
cout<<"請輸入次數:";
cin>>x;
for(int i=x; i>0; i--)
welcome();
system("pause");
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2022-5-21 12:00
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
void welcome(int x)
{
for(int i=1;i<=x;i++){
cout<<"歡迎光臨"<<endl;
}
}
int main()
{
int a;
cout<<"請輸入次數:";
cin>>a;
welcome(a);
system("pause");
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2022-5-21 12:01
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome()
{
cout<<"歡迎光臨"<<endl;
}
int main()
{
int x;
cout<<"請輸入次數:";
cin>>x;
for(int i=x; i>0; i--)
welcome();
system("pause");
return 0;
}
複製代碼
作者:
田家齊
時間:
2022-5-21 12:02
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
void welcome()
{
cout<<"歡迎光臨"<<endl;
}
int main()
{
int x;
cout<<"請輸入次數:";
cin>>x;
for(int i=0;i<x;i++)
welcome();
system("pause");
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-5-21 12:02
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome()
{
cout<<"歡迎光臨"<<endl;
}
int main()
{
int x;
cout<<"請輸入次數:";
cin>>x;
for(int i=x; i>0; i--)
welcome();
system("pause");
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-5-28 08:55
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome()
{
cout<<"歡迎光臨"<<endl;
}
int main()
{
int x;
cout<<"請輸入次數:";
cin>>x;
for(int i=x; i>0; i--)
welcome();
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2