fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. double gewicht = 60;
  8. double groesse = 1.7;
  9. double bmi;
  10.  
  11. bmi = gewicht / (groesse*groesse);
  12.  
  13. Console.WriteLine(bmi);
  14.  
  15.  
  16.  
  17.  
  18.  
  19. }
  20. }
Success #stdin #stdout 0.05s 23920KB
stdin
stdout
20.7612456747405