Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Labs20180521
- {
- class Program
- {
- static void Main(string[] args)
- {
- //02.Circle Area (12 Digits Precision)
- double r = double.Parse(Console.ReadLine());
- double area = Math.PI * r * r;
- Console.WriteLine($"{area:f12}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment