Calculator Program By C#

Calculator Program By C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace Calculator
  11. {
  12.     public partial class Form1 : Form
  13.     {
  14.         public Form1()
  15.         {
  16.             InitializeComponent();
  17.         }
  18.         public double getinput1()
  19.         {
  20.             string input1 = textBox1.Text;
  21.             double inp1 = double.Parse(input1);
  22.             return inp1;
  23.         }
  24.         public double getinput2()
  25.         {
  26.             string input2 = textBox2.Text;
  27.             double inp2 = double.Parse(input2);
  28.             return inp2;
  29.         }
  30.         public void Add()
  31.         {
  32.             double input1 = getinput1();
  33.             double input2 = getinput2();
  34.             double result = input1 + input2;
  35.             textBox3.Text = result.ToString();
  36.         }
  37.         public void Sub()
  38.         {
  39.             double input1 = getinput1();
  40.             double input2 = getinput2();
  41.             double result = input1 - input2;
  42.             textBox3.Text = result.ToString();
  43.         }
  44.         private void button1_Click(object sender, EventArgs e)
  45.         {
  46.             Add();
  47.         }
  48.         private void button2_Click(object sender, EventArgs e)
  49.         {
  50.             Sub();
  51.         }
  52.         public void Multiply()
  53.         {
  54.             double input1 = getinput1();
  55.             double input2 = getinput2();
  56.             double result = input1 * input2;
  57.             textBox3.Text = result.ToString();
  58.         }
  59.         private void button3_Click(object sender, EventArgs e)
  60.         {
  61.             Multiply();
  62.         }
  63.         public void Div()
  64.         {
  65.             double input1 = getinput1();
  66.             double input2 = getinput2();
  67.             double result = input1 / input2;
  68.             textBox3.Text = result.ToString();
  69.         }
  70.         private void button4_Click(object sender, EventArgs e)
  71.         {
  72.             Div();
  73.         }
  74.     }
  75. }

No comments

Powered by Blogger.