This page contains information on lab 1 for 01204111, first semester 2552.

We will build a simple calculator in this class. Some of the source code will be posted here.

First code snippet for calculator

int x, y, z;
 
x = int.Parse(textBox1.Text);
y = int.Parse(textBox2.Text);
z = x + y;			
label1.Text = z.ToString();