C# Hesap Makinesi kodlarıdır
ve çalışmaktadır, arkadaşlar kolay gelsin.(C# Calculators code and working
. Friends come easy)
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 Hesap_Makinesi
{
public partial class Form1 : Form
{
double sayi, sayi2, islem, sonuc, sonuc_ifsiz, sonuc_ifsiz1, sonuc_ifsiz2, sonuc_ifsiz3;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
button1.Text = "1";
button2.Text = "2";
button3.Text = "3";
button4.Text = "4";
button5.Text = "5";
button6.Text = "6";
button7.Text = "7";
button8.Text = "8";
button9.Text = "9";
button10.Text = "0";
button11.Text = "+";
button12.Text = "-";
button13.Text = "*";
button14.Text = "/";
button15.Text = "SİL";
button16.Text = "=";
}
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text+ "1";
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Text += "2";
}
private void button11_Click(object sender, EventArgs e)
{
sayi = Convert.ToDouble(textBox1.Text);
textBox1.Text = "";
islem = 1;
}
private void button12_Click(object sender, EventArgs e)
{
sayi = Convert.ToDouble(textBox1.Text);
textBox1.Text = "";
islem = 2;
}
private void button13_Click(object sender, EventArgs e)
{
sayi = Convert.ToDouble(textBox1.Text);
textBox1.Text = "";
islem = 3;
}
private void button14_Click(object sender, EventArgs e)
{
sayi = Convert.ToDouble(textBox1.Text);
textBox1.Text = "";
islem = 4;
}
private void button3_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "3";
}
private void button4_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "4";
}
private void button5_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "5";
}
private void button6_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "6";
}
private void button7_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "7";
}
private void button8_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "8";
}
private void button9_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "9";
}
private void button10_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "0";
}
private void button15_Click(object sender, EventArgs e)
{
textBox1.Text = "";
}
private void button16_Click(object sender, EventArgs e)
{
sayi2 = Convert.ToDouble(textBox1.Text);
if (islem == 1)
{
sonuc = sayi + sayi2;
}
if (islem == 2)
{
sonuc = sayi - sayi2;
}
if (islem == 3)
{
sonuc = sayi * sayi2;
}
if (islem == 4)
{
sonuc = sayi / sayi2;
}
textBox1.Text = Convert.ToString(sonuc);
sonuc_ifsiz = sayi + sayi2;
sonuc_ifsiz1 = sayi - sayi2;
sonuc_ifsiz2 = sayi * sayi2;
sonuc_ifsiz3= sayi / sayi2;
label1.Text = sonuc.ToString();
}
}
}
Hiç yorum yok:
Yorum Gönder