Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. void main(){
  2.     float hoogte;
  3.     float gewicht;
  4.     float BMI;
  5.     BMI = gewicht / (hoogte * hoogte);
  6.     printf("Wat is uw gewicht?");
  7.     scanf("%2.f", &gewicht);
  8.     printf("Wat is uw hoogte?");
  9.     scanf("%2.f", &hoogte);
  10.     printf("Uw BMI index is: %2.f", BMI);}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement