Advertisement
Guest User

Untitled

a guest
May 20th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6.     float altura;
  7.     float peso;
  8.     float bmi;
  9.  
  10.     printf("Indique altura: ");
  11.     scanf("%f", &altura);
  12.  
  13.     printf("Indique peso: ");
  14.     scanf("%f", &peso);
  15.  
  16.     bmi = peso / (pow(altura,2));
  17.  
  18.     printf("su bmi es %f", bmi);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement