Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. //prints all inputed information
  2. System.out.println(david.getName() + "'s information");
  3. System.out.println("Weight: " + person.getWeight() + " pounds");
  4. System.out.println("Height: " + person.getHeight() + " inches");
  5. System.out.println("Age: " + person.getAge() + " years");
  6.  
  7. //prints gender, bmr, bmi, and tdee
  8. System.out.println("These are for a " + cGender + ".");
  9. System.out.println("");
  10. System.out.printf("BMR is %.2f\n", person.calcBmr());
  11. System.out.printf("BMI is %.2f\n", person.calcBmi());
  12. System.out.printf("TDEE is %.2f\n\n", person.calcTdee());
  13. System.out.println(person.calcStatus());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement