13-04-2007, 10:10 PM
15-04-2007, 12:40 AM
gir google'a hesap makinesi programı yaz sitesine gir indir ya bu kadar basit.,,,her şey armut piş arğızıma düş olmasın ayşegülcüüm...
15-04-2007, 05:39 PM
merak etme yaptık o kadarını ama çok basitleşmişi vardı benimki c# ile yazılmış olacaktı ve en az 5 tane fonksiyon lazımdı vizeler olduğu için zorlanıyordum ama bir şekilde yaptım artık yorumunu kendine saklarsan sevinirim...
02-07-2007, 03:47 PM
http://www.Forum Kurallarını Okuyalım !!!/hesap-makinesi-program-indir-download424.html
valla hesap makinası demiissin al buyur buna bak incele 5 fonkisyonluymuymus
valla hesap makinası demiissin al buyur buna bak incele 5 fonkisyonluymuymus

02-07-2007, 05:23 PM
link verdim ama ne koysam yok oluyor nasıll bir kural bu ya 

13-07-2007, 02:02 AM
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public double a,b,c,x;
public string islem;
private void tut()
{
a = double.Parse(textBox1.Text);
textBox1.Text = "";
}
private void c_sıfırla_Click(object sender, EventArgs e)
{
this.textBox1.Text = string.Empty;
}
private void button1_Click(object sender, EventArgs e)
{
ActiveForm.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void btn_0_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "0";
}
private void btn_00_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text + "00";
}
private void btn_1_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text + "1";
}
private void btn_2_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "2";
}
private void btn_3_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "3";
}
private void btn_4_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "4";
}
private void btn_5_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "5";
}
private void btn_6_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "6";
}
private void btn_7_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "7";
}
private void btn_8_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 8;
}
private void btn_9_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 9;
}
private void btn_esittir_Click(object sender, EventArgs e)
{
b = Double.Parse(textBox1.Text);
textBox1.Text = "";
double c= 0 ;
switch (islem)
{
case "+":
c = a + b;
break;
case "-":
c = a - b;
break;
case "*":
c = a * b;
break;
case "/":
c = a /b;
break;
case "usal":
c = Math.Pow(a , b);
break;
case "kokal":
c = Math.Pow(a, (1 / b));
break;
}
textBox1.Text = c.ToString();
}
private void btn_topla_Click(object sender, EventArgs e)
{
tut();
islem = "+";
}
private void btn_cikar_Click(object sender, EventArgs e)
{
tut();
islem = "-";
}
private void btn_carp_Click(object sender, EventArgs e)
{
tut();
islem = "*";
}
private void btn_bol_Click(object sender, EventArgs e)
{
tut();
islem = "/";
}
private void btn_kokal_Click(object sender, EventArgs e)
{
tut();
islem = "kokal";
}
private void btn_usal_Click(object sender, EventArgs e)
{
tut();
islem = "usal";
}
}
}
buyur c# ile yazılmış hesap makinası geç kalmamışımdır umarım
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public double a,b,c,x;
public string islem;
private void tut()
{
a = double.Parse(textBox1.Text);
textBox1.Text = "";
}
private void c_sıfırla_Click(object sender, EventArgs e)
{
this.textBox1.Text = string.Empty;
}
private void button1_Click(object sender, EventArgs e)
{
ActiveForm.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void btn_0_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "0";
}
private void btn_00_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text + "00";
}
private void btn_1_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text + "1";
}
private void btn_2_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "2";
}
private void btn_3_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "3";
}
private void btn_4_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "4";
}
private void btn_5_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "5";
}
private void btn_6_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "6";
}
private void btn_7_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "7";
}
private void btn_8_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 8;
}
private void btn_9_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 9;
}
private void btn_esittir_Click(object sender, EventArgs e)
{
b = Double.Parse(textBox1.Text);
textBox1.Text = "";
double c= 0 ;
switch (islem)
{
case "+":
c = a + b;
break;
case "-":
c = a - b;
break;
case "*":
c = a * b;
break;
case "/":
c = a /b;
break;
case "usal":
c = Math.Pow(a , b);
break;
case "kokal":
c = Math.Pow(a, (1 / b));
break;
}
textBox1.Text = c.ToString();
}
private void btn_topla_Click(object sender, EventArgs e)
{
tut();
islem = "+";
}
private void btn_cikar_Click(object sender, EventArgs e)
{
tut();
islem = "-";
}
private void btn_carp_Click(object sender, EventArgs e)
{
tut();
islem = "*";
}
private void btn_bol_Click(object sender, EventArgs e)
{
tut();
islem = "/";
}
private void btn_kokal_Click(object sender, EventArgs e)
{
tut();
islem = "kokal";
}
private void btn_usal_Click(object sender, EventArgs e)
{
tut();
islem = "usal";
}
}
}
buyur c# ile yazılmış hesap makinası geç kalmamışımdır umarım
13-07-2007, 02:05 AM
buyur c# ile yazılmış hesap makinası geç kalmamışımdır umarım
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public double a,b,c,x;
public string islem;
private void tut()
{
a = double.Parse(textBox1.Text);
textBox1.Text = "";
}
private void c_sıfırla_Click(object sender, EventArgs e)
{
this.textBox1.Text = string.Empty;
}
private void button1_Click(object sender, EventArgs e)
{
ActiveForm.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void btn_0_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "0";
}
private void btn_00_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text + "00";
}
private void btn_1_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text + "1";
}
private void btn_2_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "2";
}
private void btn_3_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "3";
}
private void btn_4_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "4";
}
private void btn_5_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "5";
}
private void btn_6_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "6";
}
private void btn_7_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "7";
}
private void btn_8_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 8;
}
private void btn_9_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 9;
}
private void btn_esittir_Click(object sender, EventArgs e)
{
b = Double.Parse(textBox1.Text);
textBox1.Text = "";
double c= 0 ;
switch (islem)
{
case "+":
c = a + b;
break;
case "-":
c = a - b;
break;
case "*":
c = a * b;
break;
case "/":
c = a /b;
break;
case "usal":
c = Math.Pow(a , b);
break;
case "kokal":
c = Math.Pow(a, (1 / b));
break;
}
textBox1.Text = c.ToString();
}
private void btn_topla_Click(object sender, EventArgs e)
{
tut();
islem = "+";
}
private void btn_cikar_Click(object sender, EventArgs e)
{
tut();
islem = "-";
}
private void btn_carp_Click(object sender, EventArgs e)
{
tut();
islem = "*";
}
private void btn_bol_Click(object sender, EventArgs e)
{
tut();
islem = "/";
}
private void btn_kokal_Click(object sender, EventArgs e)
{
tut();
islem = "kokal";
}
private void btn_usal_Click(object sender, EventArgs e)
{
tut();
islem = "usal";
}
}
}
buyur c# ile yazılmış hesap makinası geç kalmamışımdır umarım
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public double a,b,c,x;
public string islem;
private void tut()
{
a = double.Parse(textBox1.Text);
textBox1.Text = "";
}
private void c_sıfırla_Click(object sender, EventArgs e)
{
this.textBox1.Text = string.Empty;
}
private void button1_Click(object sender, EventArgs e)
{
ActiveForm.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void btn_0_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "0";
}
private void btn_00_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text + "00";
}
private void btn_1_Click(object sender, EventArgs e)
{
textBox1.Text =textBox1.Text + "1";
}
private void btn_2_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "2";
}
private void btn_3_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "3";
}
private void btn_4_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "4";
}
private void btn_5_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "5";
}
private void btn_6_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "6";
}
private void btn_7_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + "7";
}
private void btn_8_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 8;
}
private void btn_9_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 9;
}
private void btn_esittir_Click(object sender, EventArgs e)
{
b = Double.Parse(textBox1.Text);
textBox1.Text = "";
double c= 0 ;
switch (islem)
{
case "+":
c = a + b;
break;
case "-":
c = a - b;
break;
case "*":
c = a * b;
break;
case "/":
c = a /b;
break;
case "usal":
c = Math.Pow(a , b);
break;
case "kokal":
c = Math.Pow(a, (1 / b));
break;
}
textBox1.Text = c.ToString();
}
private void btn_topla_Click(object sender, EventArgs e)
{
tut();
islem = "+";
}
private void btn_cikar_Click(object sender, EventArgs e)
{
tut();
islem = "-";
}
private void btn_carp_Click(object sender, EventArgs e)
{
tut();
islem = "*";
}
private void btn_bol_Click(object sender, EventArgs e)
{
tut();
islem = "/";
}
private void btn_kokal_Click(object sender, EventArgs e)
{
tut();
islem = "kokal";
}
private void btn_usal_Click(object sender, EventArgs e)
{
tut();
islem = "usal";
}
}
}
buyur c# ile yazılmış hesap makinası geç kalmamışımdır umarım
13-07-2007, 12:13 PM
çok teşekkür ederim biraz geç evet ama olsun emeğin için çok sağol +6 rep