One Note with Two Memories
一個人的筆記,兩個人的回憶。 Without catching, the dream only is the dream
....
2014年5月23日 星期五
[長知識] C語言 - 新手篇章 - 方法 - 有無回傳值
#include <stdio.h>
#include <stdlib.h>
//方法,就是叫程式幫你做事情
//void: 沒有回傳值
int main(int argc, char *argv[]) {
return 0;
}
//沒有回傳值
void 去掃地 (掃把 a, 拖把 b){
//a, b作為參數來傳遞用,為此方法內的變數
}
//有回傳值
帳單 去存錢 (錢 a){
return 帳單;
}
int saveMoney(int money){
int total
return total;
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言