Advertisement
Guest User

Untitled

a guest
May 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. int Main()
  2. {
  3.     int altura;
  4.     int peso;
  5.     double bmi;
  6.  
  7.     printf("Indique altura: ");
  8.     scanf("%i", altura);
  9.  
  10.     printf("Indique peso: ");
  11.     scanf("%i", peso);
  12.  
  13.     bmi = peso / (altura^2);
  14.  
  15.     printf("su bmi es %d", bmi");
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement