You are on page 1of 1

axb - Površina

2x(a+b) - Obim
TextBox1.Text = " " - Poništi
Me.Close() - Kraj

Obim i Površina

Dim A As Single, B As Single


Dim P As Single, O As Single
A = TextBox1.Text
B = TextBox2.Text
P = A * B
TextBox3.Text = P
O = 2 * A + 2 * B
TextBox4.Text = O

You might also like