Computer Science, asked by biswassukhendrp9sptk, 1 year ago

WAP to area of a circle of radius 6.25.

Answers

Answered by urvitandon
0
class prog1
{
public static void main
{
double radius=6.26;
double area = πr sq.
system .out .println ("double area=+"area + "cm") ;
}
}

Answered by gaganadithyareddy9
0

Answer:

Hey! Here is your answer in python...

from math import *

print(2*pi*6.25)

# HOPE THIS HELPS!!

Similar questions