透過回傳值加總輸入的 x, y 值
編寫程式碼
完整程式碼
#include <stdio.h> int callTotal(int a, int b) { return a + b; } int main() { int x, y, tot; printf("請輸入x, y的值: "); scanf("%d %d", &x, &y); tot = callTotal(x, y); printf("%d+%d=%d", x, y, tot); return 0; }
參考來源:TQC+ C 函數與陣列 305