

InterviewSolution
Saved Bookmarks
1. |
Write a VB program to input radius of a circle and find area and circumference of given circle |
Answer» 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: |
|