Design a visual basic program to input the radius of a circle and find the area , circumference and diameter of the circle
Answers
Answered by
2
Answer:
The program in python would be:::
R= int(input("enter the radius") ;
area= 3.14*R*R
cur = 2*3.14*R
dia = 2*R
print("the answer will go like", dia, cur, area)
Answered by
0
Answer:
radius of a circl 55855844418258415
Similar questions