fork download
  1. using static System.Console;
  2. using static System.Math;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. if (double.TryParse(ReadLine(), out var raio)) WriteLine($"A = {PI * Pow(raio, 2):N4}");
  7. }
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/286350/101
Success #stdin #stdout 0.01s 15820KB
stdin
Standard input is empty
stdout
Standard output is empty