21 Aralık 2013 Cumartesi

C # PROGRAMI İLE ÖRNEK SORULAR-11

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

namespace arka_artırım
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int notu;
            notu = Convert.ToInt32(textBox1.Text);//text deki veri tam sayıya çevriliyor
            if (notu > 100)
            {
                MessageBox.Show("yanlış not girdiniz");
            }
            else if (notu >= 50)
            {
                MessageBox.Show("dersi geçtiniz");
            }
            else
            {
                MessageBox.Show("dersten kaldınız");
            }
        }

       
    }
}






Hiç yorum yok: