fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. double Groesse = 1.8;
  8. double Gewicht = 65;
  9. double bmi;
  10.  
  11. bmi = Gewicht / (Groesse * Groesse);
  12.  
  13. Console.WriteLine(bmi);
  14.  
  15.  
  16. }
  17. }
Success #stdin #stdout 0.04s 23872KB
stdin
Standard input is empty
stdout
20.0617283950617