import java.util.Scanner;
public class CalorieCalculations {
 
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		Scanner QWERTY = new Scanner(System.in);
		System.out.println("We are going to calculate the number of calories you are burning each day!");
		System.out.println("Please note that your information will not be shared and you will not receive" +
				" any kind of telephone calls or emails regarding your results.");
		System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
 
		System.out.println("First, let's start with the basics!");
		System.out.println();
 
		System.out.println("*Enter your weight in pounds and press Enter*:");
		double wt;
		wt = QWERTY.nextInt();
 
		System.out.println("*Now enter your height in feet and press Enter*:");
		double ht;
		ht = QWERTY.nextDouble();
 
		System.out.println("*Now enter your age and press Enter*:");
		int ag;
		ag = QWERTY.nextInt();
 
		double BMR;
		BMR = 66 + 6.2*wt + 152.4*ht - 6.8*ag;
 
		System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
 
		System.out.println("Great! Now we are going to ask you some questions about how active you are!");
		System.out.println("These are daily activities that reflect your life style:");
		System.out.println();
 
		System.out.println("•Desk job or no exercise: 1.2•");
		System.out.println("•Lightly active (light exercise 1-3 times a week): 1.4•");
		System.out.println("•Moderately active (exercise 3-5 times a week): 1.6•");
		System.out.println("•Very active (exercise 6-7 times a week): 1.7•");
		System.out.println("•Extra active (exercise two times a day, includes heavy sports): 1.9•");
		System.out.println();
 
		System.out.println("Now enter the number that corresponds with your level of activity (only one number please!)");
		double usernum;
		usernum = QWERTY.nextDouble();
 
		System.out.println();
		System.out.println("Fantastic! Now we will calculate the number of calories you burn each day!");
 
		double cal;
		cal = BMR*usernum;				
 
		System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
		System.out.println();
		System.out.printf(
				"***Our results show that you burn an estimated %.2f calories every day!***\n", cal);
		System.out.println();
		System.out.println("If your daily calorie intake exceeds this amount, you should consider more exercise");
		System.out.println("and/or less caloric intake for the sake of your health.");
 
		System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
		System.out.println("To see common calorie amounts for every day foods to better help manage your intake, visit" +
				" http://www.calorieking.com.");
		System.out.println("To learn more about exercise and its benefits, as well as other healthy tips," +
				" visit [url=http://www.healthcarecoach.org]We Will Help You Live Healthier - Health Care Coach[/url] today!");
		System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
 
		System.out.println("Thank you for using the Calorie Counter! Have a great day!");

Hello! I am supposed to write a pseudocode to go with this assignment, and I did, but my professor (same one as last time) emailed me back saying my pseudocode had errors, and I can't see what he's talking about? The code works, so I don't understand how he found an error with the pseudocode (in code box to save space)... Any ideas? Thanks again.

print “We are going to calculate the number of calories you are burning each day!”
 
print “Please note that your information will not be shared and you will not receive any kind of telephone calls or emails regarding your results.”
 
print line divider
 
print “First, lets start with the basics!”
 
print “*Enter your weight in pounds and press Enter*:”
input weight
 
print “*Now enter your height in feet and press Enter*:”
input height
 
print “*Lastly, enter your age and press Enter*:”
input age
 
set BMR to 66 + 6.2*weight + 152.4*height – 6.8*age
 
print line divider
 
print “Great! Now we are going to ask you some questions about how active you are!”
 
print "These are daily activities that reflect your life style:”
 
print     "•Desk job or no exercise: 1.2"
	 "•Lightly active (light exercise 1-3 times a week): 1.4"
	 "•Moderately active (exercise 3-5 times a week): 1.6"
	 "•Very active (exercise 6-7 times a week): 1.7"
	 "•Extra active (exercise two times a day, includes heavy sports): 1.9"
 
print "Now enter the number that corresponds with your level of activity (only one number please!)"
input usernum
 
print "Fantastic! Now we will calculate the number of calories you burn each day!"
 
set cal to BMR*usernum
 
print line divider
 
print "***Our results show that you burn an estimated %.2f calories every day!***\n", cal);
 
print "If your daily calorie intake exceeds this amount, you should consider more exercise and/or less 	caloric intake for the sake of your health.”
 
Print line divider
 
print “To see common calorie amounts for every day foods to better help manage your intake, visit 	[url]http://www.calorieking.com.”[/url]
 
print “To learn more about exercise and its benefits, as well as other healthy tips, visit 	[url=http://www.healthcarecoach.org]We Will Help You Live Healthier - Health Care Coach[/url] today!”
 
print line divider
 
print “Thank you for using the Calorie Counter! Have a great day!