t025: T305(函數與陣列)
標籤 : TQC 函數與陣列
通過比率 : 0人/0人 (0%) [非即時]
評分方式:
Tolerant

最近更新 : 2022-06-24 01:14

內容

1.本題為一專案,包含兩段程式碼,執行結果如參考畫面,程式碼有語法、邏輯或其他項目上的錯誤,請全數修正。

//CPD03-1.c的程式如下:
#include <stdio.h>
#include <stdlib.h>
int x, y;
int callTotal();

int main()
{
     int tot;
     printf("請輸入x, y的值: ");
     scanf("%d %d", &x, &y);
     tot=callTotal();
     printf("%d+%d=%d\n", x, y, tot);
     return 0;
}

//CPD03-2.c的程式如下:
int callTotal()
{
     int sum,x,y;
     sum = x+y;
     return sum;
}

輸入說明
輸出說明
範例輸入 #1
100 200
範例輸出 #1
請輸入x, y的值: 100 200
100+200=300
測資資訊:
記憶體限制: 64 MB
公開 測資點#0 (100%): 1.0s , <1K
提示 :

此題應以專案的方式建立兩個 .c 程式,但因 judge 系統無法以專案方式執行,所以請使用者將兩檔案合併。

下列是以兩 c 檔案的解答
//CPD03-1.c的程式如下:
#include
#include

int x, y;
int callTotal();

int main() {
     int tot;
     printf("請輸入x, y的值: ");
     scanf("%d %d", &x, &y);
     tot=callTotal();
     printf("%d+%d=%d\n", x, y, tot);
     return 0;
}

//CPD03-2.c的程式如下:
int x,y;

int callTotal(){
     int sum;
     sum = x+y;
     return sum;
}
 

標籤:
TQC 函數與陣列
出處:
TQC 題庫025 [管理者: zero(管理員) ]


編號 身分 題目 主題 人氣 發表日期
沒有發現任何「解題報告」