Guest User

Untitled

a guest
Feb 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main()
  5. {
  6. string fname,lname;
  7. double yob;
  8. double height,weight,age,bmi;
  9. cout<<"Please input your first name\n";
  10. cin>>fname;
  11. cout<<"Please input your last name\n";
  12. cin>>lname;
  13. cout<<"Please input your date of birth\n";
  14. cin>>yob;
  15. cout<<"Please input your height in meters\n";
  16. cin>>height;
  17. cout<<"Please input your weight in KG\n";
  18. cin>>weight;
  19. age = 2018-yob;
  20. bmi = weight/(height*height);
  21. cout<<"Dear "<<lname<<" "<<fname<<", your age is "<<age<<" and your BMI is "<<bmi<<endl;
  22.  
  23.  
  24. return 0;
  25. }
Add Comment
Please, Sign In to add comment