Computer Science, asked by harikrishnan2370, 1 day ago

Write a programme in visual basic which except diameter of the Circle and calculate area and circumference of the circle

Answers

Answered by rishabh994
0

Answer:

Private Sub Command_Click1()

Dim res, d As Double

d= Val(Text1.Text)

res = 2*3.14*d/2

Text2.Text = res

End Sub

Hope it helps you

Thank you

Similar questions