Advertisement
Guest User

Untitled

a guest
May 19th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. class InstructionSet_broken
  5. {
  6. static void Main()
  7. {
  8. double r = double.Parse(Console.ReadLine());
  9. double area = Math.PI * r * r;
  10. Console.WriteLine("{0:f12}", area);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement