21 Aralık 2013 Cumartesi

C # PROGRAMI İLE ÖRNEK SORULAR-8

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

namespace tek_çift
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int x,k;
           
            x = Convert.ToInt32(textBox1.Text);
            k = x%2;
            if (k == 0)
            {
               
                MessageBox.Show("sayı çiftir");
            }
            else
            {
              
                MessageBox.Show("sayı tektir");
            }

        }
    }

}

Hiç yorum yok: