fork download
  1. class a
  2. {
  3. public static void Main()
  4. {
  5. string s = "700";
  6. double d = Double.parse(s);
  7. d = d/ 100;
  8. s = d.ToString("0.00");
  9. Console.WriteLine(s);
  10. }}
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(6,12): error CS0103: The name `Double' does not exist in the current context
prog.cs(9,1): error CS0103: The name `Console' does not exist in the current context
Compilation failed: 2 error(s), 0 warnings
stdout
Standard output is empty