fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7.  
  8.  
  9. double groesse = 1.8;
  10. double gewicht = 60;
  11. double BMI;
  12.  
  13. BMI = gewicht / (groesse * groesse);
  14.  
  15.  
  16. Console.WriteLine(BMI);
  17.  
  18.  
  19. }
  20. }
Success #stdin #stdout 0.04s 23864KB
stdin
Standard input is empty
stdout
18.5185185185185