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,19): error CS0117: `double' does not contain a definition for `parse'
/usr/lib/mono/2.0/mscorlib.dll (Location of the symbol related to previous error)
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