標題:
函式的建立與執行 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-3-1 18:59
標題:
函式的建立與執行 (一)
本帖最後由 鄭繼威 於 2023-4-21 01:51 編輯
宣告變數->變數型態 變數名字
int a
宣告函式->回傳型態 函式名字()
回傳型態
(沒有回傳void)
void hello()
int add()
自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
Tip:先定義才能呼叫
定義時小心
保留字
(給變數取名字的時候也是)
第一階段hello()
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//主函式
int main(){
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
第二階段myPlus(int x,int y,int z)
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//int myPlus
//沒有回傳值時 void
int myPlus(int x,int y,int z){
return x+y+z;
}
//主函式
int main(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2023-3-1 19:55
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"這是hello函式"<<endl;
}
int main()
{
hello();
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2023-3-1 19:59
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"這是hello函式"<<endl;
}
int myPlus(int x,int y,int z){
return x+y+z;
}
int main(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2023-3-1 19:59
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"這是hello函式"<<endl;
}
int main(){
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2023-3-1 20:01
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"這是hello函式"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main()
{
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2023-3-1 20:06
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"這是hello函式"<<endl;
}
int main()
{
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"這是hello函式"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
int main(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2023-3-1 20:07
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"這是hello函式"<<endl;
}
int myPlus(int x,int y,int z){
return x+y+z;
}
int main(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2