close
陣列是將一群相同類型的變數排序,然後依序編號,依條件來找到編號中的變數。
陣列宣告方法:
int[] array = new int[5];  //宣告具有五個整數的一維陣列
int[] array = new int[] { 1, 3, 5, 7, 9 };  //宣告陣列並且給予初始值
一維陣列.png 
 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
 
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            int[] array = new int[] {50,80,90,100,70};
            //宣告一維陣列5個元素,並且設定初值
            
            for (int j = 0; j < array.Length; j++) 
            {
                if (array[j]>=60 && array[j]<=100)
                {
                    listBox1.Items.Add(array[j]);
                }
            }
        }
    }
}
 
 
取出一維陣列最大值

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        int max = 0;
        private void button1_Click(object sender, EventArgs e)
        {
            int[] a = {5,4,3,2,1};
            for (int i = 0; i <= 4; i++)
            {
                if (a[i] > max)//判斷a[i](初值為5)是否大於max(初值為0)
                {
                    max = a[i];//若是則將a[i]的值給max                    
                }   
            }
            listBox1.Items.Add(max);//列印出陣列中的最大值     
        }
    }
}

 

 

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 興小弟讀書筆記 的頭像
    興小弟讀書筆記

    興小弟讀書筆記

    興小弟讀書筆記 發表在 痞客邦 留言(0) 人氣()