標題:
函式的建立與執行 (一)
[打印本頁]
作者:
王瑞喻
時間:
2021-6-2 12:14
標題:
函式的建立與執行 (一)
什麼是函式?
函式說明
6/5
#include<iostream>
#include<cstdlib>
using namespace std;
//自訂函式
void hello()//void 沒有回傳值 沒有return
{
cout<<"hello!"<<endl;
}
int main()
{
hello();
system("pause");
return 0;
}
複製代碼
自訂函式:
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;
}
複製代碼
作者:
文硯
時間:
2021-6-5 20:58
此帖僅作者可見
作者:
顏宇鋒
時間:
2021-6-5 20:58
此帖僅作者可見
作者:
蔡坤辰
時間:
2021-6-5 20:59
此帖僅作者可見
作者:
曾元瑜
時間:
2021-6-5 21:00
此帖僅作者可見
作者:
黃韋誌
時間:
2021-6-5 21:00
此帖僅作者可見
作者:
張博翔
時間:
2021-6-5 21:01
此帖僅作者可見
作者:
蔡旭恩
時間:
2021-6-5 21:01
此帖僅作者可見
作者:
徐茂程
時間:
2021-6-5 21:02
此帖僅作者可見
作者:
林土水
時間:
2021-6-5 21:03
此帖僅作者可見
作者:
徐茂程
時間:
2021-6-5 21:04
此帖僅作者可見
作者:
張博竣
時間:
2021-6-5 21:06
此帖僅作者可見
作者:
吳湘儀
時間:
2021-6-12 19:21
此帖僅作者可見
作者:
張博翔
時間:
2021-6-12 19:22
此帖僅作者可見
作者:
徐茂程
時間:
2021-6-12 19:22
此帖僅作者可見
作者:
蔡坤辰
時間:
2021-6-12 19:22
此帖僅作者可見
作者:
蔡旭恩
時間:
2021-6-12 19:23
此帖僅作者可見
作者:
張博竣
時間:
2021-6-12 19:25
此帖僅作者可見
作者:
林土水
時間:
2021-6-12 19:26
此帖僅作者可見
作者:
洪勻蓁
時間:
2021-8-3 16:43
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2