17 Mart 2015 Salı

Sınav sorusu olabilecek sorulardan



Ö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 Sınav_sorusuna_benzer_soru_1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
            int max, min, ortalama, toplam;
            Random rastgelesayi = new Random();
            int[] dizi = new int[5];
        private void button1_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < 1000; i++)
            {
                this.Top += 10;
                this.Left -= 10;
                this.Top -= 10;
                this.Left += 10;
               

            }

         
            for (int i = 0; i < 5; i++)
            {
                dizi[i] = rastgelesayi.Next(50);
                listBox1.Items.Add(dizi[i]);
                if (dizi[i] % 2 == 0)
                {
                    listBox3.Items.Add(dizi[i]);
                }
                else
                {
                    listBox2.Items.Add(dizi[i]);
                }
            }
            max = dizi[0];
            min = dizi[0];
            toplam = 0;
            ortalama = 0;


           
         }

        private void button2_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < 5; i++)
            {
                if (max < dizi[i])
                {
                    max = dizi[i];
                }
                if (min > dizi[i])
                {
                    min = dizi[i];
                }
                toplam += dizi[i];
            }
            label7.Text = "Maksimum Sayı: " + max.ToString();
            label8.Text = "Minimum Sayı: " + min.ToString();
            ortalama = toplam / 10;
            label9.Text = "5 adet Sayının ortalaması: " + ortalama.ToString();
                                     
                                       //Erdoğan GENÇTÜRK.
        }
        }
    }

Hiç yorum yok: