標題:
函式的建立與執行 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-4-28 05:39
標題:
函式的建立與執行 (一)
宣告變數->變數型態 變數名字
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-4-29 14:47
#include<iostream>
#include<cstdlib>
using namespace std;
//副函式
//宣告變數:變數型態 變數名稱
//int a
//宣告函式:回傳型態 函式名稱()
//回傳型態(沒有回傳void)
//hello函式
void hello(){
cout<<"hello"<<endl;
}
int add(int x,int y){
int sum=x+y;
return sum;
}
//主函式
int main(){
hello();
int a,b;
cout<<"請輸入你要相加的兩個數:";
cin>>a>>b;
cout<<add(a,b)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2023-4-29 14:48
#include<iostream>
#include<cstdlib>
using namespace std;
//副函式
//宣告變數:變數型態 變數名稱
//int a
//宣告函式:回傳型態 函式名稱()
//回傳型態(沒有回傳void)
//hello函式
void hello(){
cout<<"hello"<<endl;
}
int add(int x,int y){
int sum=x+y;
return sum;
}
//主函式
int main(){
hello();
int a,b;
cout<<"請輸入你要相加的兩個數:";
cin>>a>>b;
cout<<add(a,b)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2023-4-29 14:48
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"這是hello函式"<<endl;
}
add(int x,int y,int z)
{
int sum=x+y+z;
return sum;
}
int main()
{
cout<<"這是主函式的hello"<<endl;
hello();
cout<<endl;
cout<<"請輸入要相加的3數:"<<endl;
int a,b,c;
cin>>a>>b>>c;
cout<<"相加為:"<<add(a,b,c)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2023-4-29 14:50
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"hello"<<endl;
}
int add(int x,int y){
int sum=x+y;
return sum;
}
int main(){
hello();
int a,b;
cout<<"請輸入你要相加的兩個數:";
cin>>a>>b;
cout<<add(a,b)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2023-4-29 14:50
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"hello"<<endl;
}
int add(int x,int y){
int sum=x+y;
return sum;
}
int main(){
hello();
int a,b;
cout<<"請輸入你要相加的兩個數:";
cin>>a>>b;
cout<<add(a,b)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2023-4-29 14:51
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"這是hello函式"<<endl;
}
add(int x,int y,int z)
{
int sum=x+y+z;
return sum;
}
int main()
{
cout<<"這是主函式的hello"<<endl;
hello();
cout<<endl;
cout<<"請輸入要相加的3數:"<<endl;
int a,b,c;
cin>>a>>b>>c;
cout<<"相加為:"<<add(a,b,c)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2023-4-29 14:51
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"hello2"<<endl;
}
int myPlus(int x,int y,int z){
return x+y+z;
}
int main(){
cout<<"hello1"<<endl;
hello();
cout<<"myPlus 2+4+6="<<myPlus(2,4,6)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2023-4-29 14:52
#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-4-29 14:53
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"hello2"<<endl;
}
int add(int x,int y,int z){
return x+y+z;
}
int main(){
cout<<"hello1"<<endl;
hello();
cout<<"hello3"<<endl;
system("pause");
cout<<"輸入三個想相加的數"<<endl;
int a,b,c;
cin>>a>>b>>c;
cout<<add(a,b,c)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2023-4-29 14:53
9
作者:
楊芊琦
時間:
2023-5-20 17:02
#include<iostream>
#include<cstdlib>
using namespace std;
string Hello(string name)
{
return "Hello!" + name;
}
int main()
{
string innn;
cout << "Your name:";
cin >> innn;
cout << Hello(innn) << endl;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2