Write a VB program to input radius of a circle and find area and circumference of given circle
Answers
Answered by
1
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)
Explanation:
Similar questions