2015年12月31日 星期四

C# - 陣列 Array

練習陣列 Array 之宣告及使用(其他宣告考參):

  • 輸入 5 個正整數並計算相加總合 sum

##ReadMore##
檔案 → 新增專案 → 主控台應用程式 → 撰寫 Program.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Leeson_A._8
{
    class Program
    {
        static void Main(string[] args)
        {
            int k;
            int[] arr = new int[5];
            Console.WriteLine("====由鍵盤連續輸入五個整數值到 arr 陣列:\n");
            for (k = 0; k < 5; k++)
            {
                Console.Write("arr[{0}] = ", k);
                arr[k] = int.Parse(Console.ReadLine());
            }
            Console.WriteLine();
            Console.WriteLine("==== arr 陣列的元素內容");

            int sum = 0;
            foreach (int item in arr)
            {
                Console.Write(" " + item);
                sum += item;
            }
            Console.WriteLine();
            Console.WriteLine();
            Console.WriteLine(" arr 陣列的元素總和為: {0}", sum);
            Console.Read();
        }
    }
}

沒有留言:

張貼留言