fork download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int weight;
  6. float height, bmi;
  7.  
  8. printf ("Give weight: ");
  9. scanf ("%d",&weight);
  10.  
  11. printf ("Give height: ");
  12. scanf ("%f",&height);
  13.  
  14. bmi = weight / (height * height);
  15.  
  16. printf ("Your BMI is: %f\n ", bmi);
  17.  
  18. }
Success #stdin #stdout 0s 2164KB
stdin
75.0 1.65
stdout
Give weight: Give height: Your BMI is: inf