fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. double m; //masse
  8. double g; //größe
  9. double bmi; //body mass index
  10.  
  11. m = int.Parse(Console.ReadLine());
  12. g = int.Parse(Console.ReadLine());
  13.  
  14. bmi =
  15.  
  16.  
  17.  
  18. Console.WriteLine(a);
  19. }
  20. }
Compilation error #stdin compilation error #stdout 0.04s 23920KB
stdin
43
compilation info
prog.cs(18,21): error CS0103: The name `a' does not exist in the current context
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty