Computer Science, asked by teaquestion23501, 18 days ago

Write a VB program to input radius of a circle and find area and circumference of given circle

Answers

Answered by mayanksaha9125
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