Competitive Programming
Try To Help To Generate & Improve The Idea Of Competitive Programming
Wednesday, August 23, 2017
1002 Area of a Circle URI Problem Only Solution In C#
using System;
class URI {
static void Main(string[] args) {
double PI=3.14159;
double r =Convert.ToDouble(Console.ReadLine());
double area=PI*r*r;
Console.WriteLine("A="+area.ToString("0.0000"));
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment