標題:
函式的建立與執行 (一)
[打印本頁]
作者:
tonyh
時間:
2020-5-1 20:02
標題:
函式的建立與執行 (一)
自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
#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()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
黃辰昊
時間:
2020-5-1 20:18
本帖最後由 黃辰昊 於 2020-5-1 20:21 編輯
#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()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2020-5-1 20:21
#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()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2020-5-1 20:22
本帖最後由 黃辰昊 於 2020-5-1 20:23 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<hello!!<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
孫嘉駿
時間:
2020-5-1 20:22
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
林政瑜
時間:
2020-5-1 20:22
#include<cstdlib>
#include<iostream>
#include<ctime>
using namespace std;
void dddd(int a,int s)
{
cout<<a*s<<endl;
}
int f(int x,int y)
{
return x+y;
}
int main()
{
dddd(8,7);
cout<<f(3,2);
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2020-5-1 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
void hello(){
cout<<"Hello"<<endl;
}
int myPlus(int c,int v,int b)
{
return c+v+b;
}
int main()
{
hello();
cout<<myPlus(1,2,3)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2020-5-1 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
cout<<"喂!"<<endl;
}
int myPlus(int a,int b,int c)
{
return a+b+c;
}
int main()
{
hello();
cout<<myPlus(1,2,6)<<endl;
system("pause");
return 0;
}
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(1,2,6)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"喂!"<<endl;
}
int myPlus(int a,int b,int c)
{
return a+b+c;
}
複製代碼
作者:
董宸佑
時間:
2020-5-1 20:23
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
void PSG()
{
cout<<"Hello!!!!!!!!!!!!!!!!!!!!!!!!!!!"<<endl;
}
int QLS(int x, int y, int z)
{
return x+y+z;
}
int main()
{
PSG();
cout<<QLS(1,2,3)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2020-5-1 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
黃宥華
時間:
2020-5-1 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int ,int ,int );
int main()
{
hello();
cout<<myPlus(1,2,3)<<endl;
system("pause");
return 0;
}
int myPlus(int c,int v,int b)
{
return c+v+b;
}
void hello(){
cout<<"Hello"<<endl;
}
複製代碼
作者:
蔡忻霓
時間:
2020-5-1 20:25
#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()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2020-5-1 20:25
[code]#include<iostream>
#include<cstdlib>
using namespace std;
void PSG();
int QLS(int,int,int);
int main()
{
PSG();
cout<<QLS(1,2,3)<<endl;
system("pause");
return 0;
}
void PSG()
{
cout<<"Hello!!!!!!!!!!!!!!!!!!!"<<endl;
}
int QLS(int x,int y,int z)
{
return x+y+z;
}
複製代碼
[/code]
作者:
蔡忻霓
時間:
2020-5-1 20:25
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
陳宥穎
時間:
2020-5-1 20:34
#include<iostream>
#include<cstdlib>
using namespace std;
void Cout()
{
cout<<"hellow\n";
}
int Plus(int a,int b,int c)
{
return a+b+c;
}
void Plus2(int a,int b,int c)
{
cout<<a+b+c;
}
int main()
{
Cout();
cout<<Plus(4,3,6)<<endl;
Plus2(3,2,1);
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2