Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cstdlib>
- #include <iostream>
- #include <math.h>
- using namespace std;
- int main()
- {
- float peso, altura, imc;
- system("cls");
- cout << " Programa Peso ideal " << endl;
- cout << " Digite seu peso:"; cin >> peso;
- cout << " Digite sua altura:"; cin >> altura;
- imc = peso / (altura * altura);
- cout << " IMC: " << imc << endl;
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment