fork download
  1. using System;
  2.  
  3. class URI
  4. {
  5. static void Main(string[] args)
  6. {
  7. double raio, pi;
  8. pi = 3.14159;
  9. raio = double.Parse(Console.ReadLine());
  10.  
  11. Console.ReadLine("A={0}",(pi*(raio*raio)));
  12.  
  13.  
  14. }
  15.  
  16. }
Compilation error #stdin compilation error #stdout 0s 131072KB
stdin
2.00
compilation info
prog.cs(11,17): error CS1501: No overload for method `ReadLine' takes `2' arguments
/usr/lib/mono/4.5/mscorlib.dll (Location of the symbol related to previous error)
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty