Калькулятор на языке C#
Автор: RomaTresh • Февраль 24, 2019 • Лабораторная работа • 2,004 Слов (9 Страниц) • 404 Просмотры
Министерство образования и науки РФ
Федеральное государственное бюджетное образовательное учреждение
высшего образования
«Ярославский государственный технический университет»
Кафедра «Информационные системы и технологии»
Задание защищено
с оценкой ________
Преподаватель
____________ А.В. Кузин
«___» ____________ 2019
Калькулятор на языке C#
Отчет о лабораторной работе №1
по курсу “Информационные технологии”
ЯГТУ 09.03.02 ЛР
Задание выполнила
студентка гр. ЭИС-25
____________ М.А.Кирпичева
«___» ____________ 2019
2019
Цель работы: Осуществить реализацию калькулятора на языке C#.
Код программы:
public partial class Squirrel : Form
{
string str;
float a, b, result;
int oper;
public Squirrel()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 1;
}
private void button2_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 2;
}
private void button3_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 3;
}
private void button4_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 4;
}
private void button5_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 5;
}
private void button6_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 6;
}
private void button7_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 7;
}
private void button8_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 8;
}
private void button9_Click(object sender, EventArgs e)
{
if (textBox1.Text != "0")
textBox1.Text = textBox1.Text + 9;
}
private void button10_Click(object sender, EventArgs e)
{
textBox1.Clear();
}
private void button11_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + 0;
}
...