Solution
#include <stdio.h>
int main()
{
float a,area;
scanf ("%f",&a);
area=3.14*a*a;
printf ("Area of Circle=%0.6f",area);
printf ("\nArea of Circle=%0.2f",area);
return 0;
}
For python program visit the link given below.This blog is to help for the programmers to learn the programs and not to demotivate any people .Our intention is to make the learners to learn the code easily.
2
Area of Circle=12.560000
Area of Circle=12.56
25
Area of Circle=1962.500000
Area of Circle=1962.50
Problem Description Ram and Sita playing the parity game. Two types of parity are there. One is odd parity and next is even parity. Ram will...
No comments:
Post a Comment