首先宣告乙個長度為5的陣列,接受使用者的輸入,求和首先接收使用者輸入的5個數,存在陣列裡面,對這個陣列求和
console.writeline("請輸入長度:");
int count = int.parse(console.readline());
int sum = 0;
int nums = new int[count];
for (int i = 0; i < nums.length; i++)
個數", i + 1);
nums[i] = int.parse(console.readline());
sum += nums[i];
}for (int i = 0; i < nums.length; i++)
console.writeline("這個數字的和為:", nums.length, sum);
C 陣列練習
從乙個陣列中最大整數,最小整數,總和,平均值。高階 陣列數值由程式執行時輸入,同時要顯示最大數和最小數的序號 using system using system.collections.generic using system.linq using system.text using system....
C語言練習之陣列小練習
1.選修某課程的學生共10人,學生的資訊包括學號 班級 姓名 成績,按成績高低輸出學生名單 用選擇法排序 include include include define n 10 選修某課程的學生共10人,學生的資訊包括學號 班級 姓名 成績,按成績高低輸出學生名單 用選擇法排序 intmain fo...
C語言陣列練習1
1.通過輸入一系列商品的 求出總商品的 include void main printf 所有商品的合計費用 2f n total 2.輸入學生學號與成績,並顯示出來。include void main printf n 學員的學號及其兩面三刀個學期的成績為 printf n t學號 t第一學期 t...