0% found this document useful (0 votes)
58 views4 pages

Calc 5

This document contains the code for a basic calculator application. It defines click event handlers for buttons 0-9 and arithmetic operation buttons that append numbers to a text box. Additional buttons clear the text box, evaluate expressions based on the operation type, and insert a decimal point if one is not already present. The application performs basic number input, arithmetic calculations, and output to a text box for display.

Uploaded by

amaha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views4 pages

Calc 5

This document contains the code for a basic calculator application. It defines click event handlers for buttons 0-9 and arithmetic operation buttons that append numbers to a text box. Additional buttons clear the text box, evaluate expressions based on the operation type, and insert a decimal point if one is not already present. The application performs basic number input, arithmetic calculations, and output to a text box for display.

Uploaded by

amaha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

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 Calcualtor
{
public partial class Form1 : Form
{
public Form1()
{

InitializeComponent();

}
float num1, ans;
int count;

private void button1_Click(object sender, EventArgs e)


{
textBox1.Text = textBox1.Text + 1;
}

private void button2_Click(object sender, EventArgs e)


{
textBox1.Text = textBox1.Text + 2;
}

private void button3_Click(object sender, EventArgs e)


{
textBox1.Text = textBox1.Text + 3;
}

private void Form1_Load(object sender, EventArgs e)


{

private void button4_Click(object sender, EventArgs e)


{
textBox1.Text = textBox1.Text + 4;
}

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 + 2;
}

private void button11_Click(object sender, EventArgs e)


{
textBox1.Text = textBox1.Text + 0 +0;
}

private void button13_Click(object sender, EventArgs e)


{
num1 = float.Parse(textBox1.Text);
textBox1.Clear();
textBox1.Focus();
count = 2;

private void button14_Click(object sender, EventArgs e)


{
if (textBox1.Text != "")
{
num1 = float.Parse(textBox1.Text);
textBox1.Clear();
textBox1.Focus();
count = 1;
}
}

private void button15_Click(object sender, EventArgs e)


{
num1 = float.Parse(textBox1.Text);
textBox1.Clear();
textBox1.Focus();
count = 3;
}

private void button16_Click(object sender, EventArgs e)


{
num1 = float.Parse(textBox1.Text);
textBox1.Clear();
textBox1.Focus();
count = 4;
}

private void button17_Click(object sender, EventArgs e)


{
compute(count);
}
public void compute(int count)
{
switch (count)
{
case 1:
ans = num1 - float.Parse(textBox1.Text);
textBox1.Text = ans.ToString();
break;
case 2:
ans = num1 + float.Parse(textBox1.Text);
textBox1.Text = ans.ToString();
break;
case 3:
ans = num1 * float.Parse(textBox1.Text);
textBox1.Text = ans.ToString();
break;
case 4:
ans = num1 / float.Parse(textBox1.Text);
textBox1.Text = ans.ToString();
break;
default:
break;
}
}

private void button18_Click(object sender, EventArgs e)


{
textBox1.Clear();
count = 0;
}

private void button12_Click(object sender, EventArgs e)


{
int c = textBox1.TextLength;
int flag = 0;
string text = textBox1.Text;
for (int i = 0; i < c; i++)
{
if (text[i].ToString() == ".")
{
flag = 1; break;
}
else
{
flag = 0;
}
}
if (flag == 0)
{
textBox1.Text = textBox1.Text + ".";
}
}
}
}

You might also like