17 Mart 2015 Salı

Rasgele DİZİ




Örneğin Kodları :


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 dizi_random
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int max, min, ortalama,toplam;
           Random rastgelesayi = new Random();
         int[] dizi = new int[10];
           for (int i = 0; i < 10; i++)
          {
           dizi[i] = rastgelesayi.Next(50);
           listBox1.Items.Add(dizi[i]);
          }
           max = dizi[0];
            min = dizi[0];
           toplam = 0;
            ortalama = 0;
         for (int i = 0; i < 10; i++)
      {
             if (max < dizi[i])
         {
         max = dizi[i];
          }
          if (min > dizi[i])
          {
          min = dizi[i];
           }
        toplam += dizi[i];
           }
         label1.Text = "Maksimum Sayı: " + max.ToString();
         label2.Text = "Minimum Sayı: " + min.ToString();
         ortalama = toplam / 10;
         label3.Text = "10 adet Sayının ortalaması: " + ortalama.ToString();
         }

        private void Form1_Load(object sender, EventArgs e)
        {
                                        //Erdoğan GENÇTÜRK.
        }
        }
    }

Hiç yorum yok: