Basal metabolic rate (BMR), is the rate of metabolism that occurs when an individual is at rest in a warm environment and is in the post absorptive state, and has not eaten for at least 12 hours.
Find below java program.
package swain.swain;
import java.util.Scanner;
public class BMR {
public static void main(String[] args) {
int age;
double weight, height, BMRw, BMRm;
System.out.println("Enter weight in lbs:");
Scanner kb = new Scanner(System.in);
weight = kb.nextDouble();
System.out.println("Enter height in inches:");
height = kb.nextDouble();
System.out.println("Enter age in years:");
age = kb.nextInt();
BMRw = 655 + (4.3 * weight) + (4.7 * height) - (4.7 * age);
BMRm = 66 + (6.3 * weight) + (12.9 * height) - (6.8 * age);
System.out.println("BMR for woman is: " + BMRw);
System.out.println("BMR for man is: " + BMRm);
System.out.println("A typical Chocolate Bar contains about 230 calories");
System.out.println("No. of Chocolate Bars consumed to maintain your weight: ");
int choco = 230;
System.out.println(Math.round(BMRw / choco));
System.out.println(Math.round(BMRm / choco));
}
}
Find below java program.
package swain.swain;
import java.util.Scanner;
public class BMR {
public static void main(String[] args) {
int age;
double weight, height, BMRw, BMRm;
System.out.println("Enter weight in lbs:");
Scanner kb = new Scanner(System.in);
weight = kb.nextDouble();
System.out.println("Enter height in inches:");
height = kb.nextDouble();
System.out.println("Enter age in years:");
age = kb.nextInt();
BMRw = 655 + (4.3 * weight) + (4.7 * height) - (4.7 * age);
BMRm = 66 + (6.3 * weight) + (12.9 * height) - (6.8 * age);
System.out.println("BMR for woman is: " + BMRw);
System.out.println("BMR for man is: " + BMRm);
System.out.println("A typical Chocolate Bar contains about 230 calories");
System.out.println("No. of Chocolate Bars consumed to maintain your weight: ");
int choco = 230;
System.out.println(Math.round(BMRw / choco));
System.out.println(Math.round(BMRm / choco));
}
}
This BMR Calculator is excellent. It's easy to use and provides accurate results. Highly recommend trying the BMR Calculator to customize your nutrition and reach your fitness goals.
ReplyDelete