1.將6個整數元素以設定的方式置於一個arr陣列,將其加總後予以印出。
2.題目已提供程式碼片段,執行結果如參考畫面,程式碼有語法、邏輯或其他項目上的錯誤,請全數修正。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int arr[5]={10, 20, 30, 40, 50, 60};
int i, total=0;
for (i=1; i<6; i++) {
total += arr[i];
}
printf("總和為%f\n", total);
return 0;
}
總和為210
編號 | 身分 | 題目 | 主題 | 人氣 | 發表日期 |
沒有發現任何「解題報告」 |