in this question, pp pounds is not mentioned so I have taken the increment of 5 pounds. You can set to your desired value in the inner for loop
Java code
--------------------------------------------------------------------------------------------------------------------------------
/*
* To change this license header, choose License Headers in Project
Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package bmi_table;
import java.util.Scanner;
import java.text.DecimalFormat;
/**
*
* @author satsahib
*/
public class BMI_table {
//find BMI value
static double BMI(int w,int h)
{
double bmi;
bmi=703*((double)w/(h*h));
//System.out.println(bmi);
return bmi;
}
//find descrption of BMI value
static String BMI_I(double bmi)
{
String str="";
if(bmi<16)
str="serious underweight";
else if(bmi<18)
str="underweight";
else if(bmi<24)
str="normal weight";
else if(bmi<29)
str="overweight";
else if(bmi<35)
str="seriously overweight";
else
str="gravely overweight";
return str;
}
public static void main(String[] args) {
// TODO code application logic here
int lowHeight,highHeight,lowWeight,highWeight;
Scanner sc=new Scanner(System.in);
//input form user
System.out.print("Enter low height in feet: ");
lowHeight=sc.nextInt();
System.out.print("Enter high height in feet: ");
highHeight=sc.nextInt();
System.out.print("Enter low weight in pounds: ");
lowWeight=sc.nextInt();
System.out.print("Enter high weight in pounds: ");
highWeight=sc.nextInt();
//to format output to 4 decimal places
DecimalFormat df = new DecimalFormat("###.####");
int i,j;
double bmivalue;
String s;
System.out.println("feet inches weight BMI BMI_descrption");
for(i=lowHeight*12;i<=highHeight*12;i+=3)
{
for(j=lowWeight;j<=highWeight;j+=5)
{
bmivalue=BMI(j,i);
s=BMI_I(bmivalue);
System.out.println(i/12+" "+i+" "+" "+j+" "+df.format(bmivalue)+"
"+s);
}
}
}
}
-----------------------------------------------------------------------------------------------------------------------------------
Output

Write a Java program that performs these operations Prompt the user to enter a low height...
Y F G Prompt and Store. 5. Prompt the user with "Enter your weight in pounds: "message and store in the weight variable. 6. Initialize an int variable named heightIn Inches to feet OſHeight times 12 plus Inches OfHeight. 7. Initialize a double variable named BMI to weight * 703.0 heightIrinches El VB 8. Initialize a double variable named ratio to height In Inches? 703.0 9. Initialize a double variable named lower Normal to 18.5 times ratio. 10. Initialize a...
/////////////////////////////////////////////////////////////////////////////////// //This program // 1. asks the user her/his weight and height // 2. then calculates the user's body-mass-index (BMI) // 3. and then prints an appropriate message based on the user's BMI /////////////////////////////////////////////////////////////////////////////////// #include <iostream> using namespace std; void printWelcome(); // ask the weight (in pounds) and height (in inches) of the user and store the values in formal // parameters weight and height, respectively void getWeightAndHeight(float& weight, float& height); // calculate and return the BMI (Body-Mass-Index) based on...
Check the given program for errors and write the correct program : height = float(input("Enter height in meters: ")) weight = float(input("Enter weight in kg: ")); bmi == weight/(height**2) print("Your BMI is:”,bmi”) if ( bmi< 16) print("severely underweight") elif ( bmi>= 16 and bmi< 18.5): print("underweight") elif ( bmi>= 18.5 and bmi< 25): print("Healthy") elif ( bmi>= 25 and bmi< 30): print("overweight") elif ( bmi>=30): print("severely overweight") elseif: print(“Not in Range) Rewrite the entire program correctly and calculate the bmi...
Using python, write a program that lets the user enter this information: First name & Last name weight age gender height systolic & diastolic blood pressure body temperature in Fahrenheit After the information has been entered, the results should be printed on the display based on the information below -BMI -Temp Conversion -Mean blood pressure -weight conversion (lbs to kg) -height conversion (inches to cm) The output should look like: First Name Last name is ___ cm and ____kgs. First...
Write a single C++ program that performs the following conversion (The modulus divide will help you get the remainder as shown in class) 39 / 12 = 3 and 39 % 12 = 3, so 3 feet 3 inch(es) Height conversion 1 meter = 39 inches 12 inches = 1 foot Ask/Prompt the user to enter in the height in meters, convert and output the result in feet and inches Example 1 meters as input should produce 3 feet (foot)...
Complete the Python program below that performs the following operations. First prompt the user to input two integers, n and m. If n<m, then print the odd positive integers that are less than m (in order, on a single line, separated by spaces). If man, then print the even positive integers that are less than n (in order, on a single line, separated by spaces). If neem, then print nothing. For instance, if the user enters 5 followed by 10,...
IT Java code In Lab 8, we are going to re-write Lab 3 and add code to validate user input. The Body Mass Index (BMI) is a calculation used to categorize whether a person’s weight is at a healthy level for a given height. The formula is as follows: bmi = kilograms / (meters2) where kilograms = person’s weight in kilograms, meters = person’s height in meters BMI is then categorized as follows: Classification BMI Range Underweight Less...
EASY JAVA PROGRAM 10. Write a program called CalculateBMI. Ask the user for their height in inches and their weight in pounds. Then, compute and report their BMI. You will need to look up the formula for BMI online and perform any necessary unit conversions. Print the result with two digits after the decimal place
Lab 1: InheritanceTest Write a program called InheritanceTest1.java to support an inheritance hierarchy for class Point–Square–Cube. Use Point as the superclass of the hierarchy. Specify the instance variables and methods for each class. The private data of Point should be the x-y coordinates, the private data of Square should be the sideLength, and the private data of Cube should be depth. Provide applicable accessor methods, mutator methods, toString() methods, area() method, and volume() method to all classes. Write a program...
Using C++
cs 102 REVIEW LAB Selection a) Minimum/Maximum: Nrite a program that asks the user to enter two numbers. The progzan should use the conditional operator to determine which number is the smaller and which is the larger. Display your output in the format below: The smaller number is: (smallerNumber) The larger number is: ClargerNumber] b) Areas of Rectangles: The area of a rectangle is calculated by maltiplying its length tines its width. Write a program that asks the...