21 Aralık 2013 Cumartesi

C # PROGRAMI İLE ÖRNEK SORULAR-21

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

namespace yuvarlama
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            double x;
            x = Math.Floor(Convert.ToDouble(textBox1.Text));
            textBox2.Text = x.ToString();
        }
    }
}


Hiç yorum yok: