Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

on netbean CIS355A Week 1 Lab—Developing an OOP Console Application OBJECTIVES C

ID: 3602624 • Letter: O

Question

on netbean

CIS355A Week 1 Lab—Developing an OOP Console Application

OBJECTIVES
Create a class in java with appropriate methods.
Process user input with the class using the scanner for keyboard input and console output.

PROBLEM: Health Profile Console Program
GymsRUs has a need to provide fitness/health information to their clients, including BMI and maximum heart rate. Your task is to write a console program to do this.

Body mass index (BMI) is a measure of body fat based on a person’s height and weight. BMI can be used to indicate if you are overweight, obese, underweight, or normal. The formula to calculate BMI is
Image

The following BMI categories are based on this calculation.
Category BMI Range
Underweight less than 18.5
Normal between 18.5 and 24.9
Overweight between 25 and 29.9
Obese 30 or more

Max heart rate is calculated as 200 minus a person’s age.

FUNCTIONAL REQUIREMENTS
Design and code a class called HealthProfile to store information about clients and their fitness data. The attributes (name, age, weight, and height) are private instance variables. The class must include the following methods.

method description
setName Receives a value to assign to private instance variable
setAge Receives a value to assign to private instance variable
setWeight Receives a value to assign to private instance variable
setHeight Receives TWO inputs (height in feet, inches). Converts and stores the total INCHES in private instance variable
getName Returns private instance variable
getAge Returns private instance variable
getWeight Returns private instance variable
getHeight Returns private instance variable (inches)
getBMI Calculates and returns BMI
getCategory Returns category based on BMI
getMaxHR Calculates and returns maximum heart rate

Create a SEPARATE TEST CLASS, Lab1Main, to prompt for user input and display output using the HealthProfile class. Process multiple inputs using a loop. You can assume all user input is valid.

SAMPLE OUTPUT

Enter name or X to quit: John Smith
Your age: 35
Your weight: 200
Your height - feet: 6
Your height - inches: 0

Health Profile for John Smith
BMI: 27.1
BMI Category: overweight
Max heart rate: 185

Enter name or X to quit: Ann Jones
Your age: 50
Your weight: 120
Your height - feet: 5
Your height - inches: 2

Health Profile for Ann Jones
BMI: 21.9
BMI Category: normal
Max heart rate: 170

Enter name or X to quit: X


GRADING RUBRIC
HealthProfile class
All methods created with proper functionality 30
Lab1Main class
Receives user input using Scanner
Process input using a HealthProfile object
Correct output displayed in console
BMI displayed with 1 decimal place
Loop to process multiple clients 10
Code style 5
Lab Report 10
TOTAL 55

CODE STYLE REQUIREMENTS
Include meaningful comments throughout your code.
Use meaningful names for variables.
Code must be properly indented.
Include a comment header at beginning of each file, example below.
/****************************************************
Program Name: ProgramName.java
Programmer's Name: Student Name
Program Description: Describe here what this program will do
***********************************************************/

DELIVERABLES
Submit as a SINGLE zip folder
All java files
Lab report

Follow assignment specification regarding class/method names.
Note that your java filename must match class name (DO NOT rename).

can you show screen shots step by step first time using netbeans and can you show screen shots where the codes go

Explanation / Answer

HealthProfile.java

public class HealthProfile
{
   //instance variable declaration
   String name;
   int age;
   double weight;
   double height;

   //default constructor, initialize instance variable
   public HealthProfile()
   {
       name="";
       age=0;
       weight=0.0;
       height=0.0;
   }

   //method to set the name
   public void setName(String strName)
   {
       name=strName;
   }

   //method to set the age
   public void setAge(int a)
   {
       age=a;
   }

   //method to set the weight
   public void setWeight(double wt)
   {
       weight=wt;
   }

   //method to set the height
   public void setHeight(double ft, double inch)
   {
       //convert feet to inches and add the inches and set to height
       height=(ft*12)+inch;
   }

   //method that returns name
   public String getName()
   {
       return name;
   }

   //method that returns age
   public int getAge()
   {
       return age;
   }

   //method that returns weight
   public double getWeight()
   {
       return weight;
   }

   //method that returns height
   public double getHeight()
   {
       return height;
   }

   //method that returns bmi
   public double getBMI()
   {
       double bmi;
    
       //calculate and return bmi
       bmi = (weight * 703) / (height * height);
       return bmi;
   }

   //method that returns category
   public String getCategory(double BMI)
   {
       //if bmi is less than 18.5 return underweight
       if(BMI<18.5)
           return "Underweight";
       //if bmi is between 18.5 and 25 return normal
       else if(BMI>=18.5 && BMI<25)
           return"Normal";
       //if bmi is between 25 and 30 return overweight
       else if(BMI>=25 && BMI<30)
           return "Overweight";
       //else return obese
       else
           return "Obese";
   }

   //method that returns maximum heart rate
   public int getMaxHR()
   {
       //return 220 minus age
       return (220-age);
   }

}

HealthProfileTest.java

import java.text.DecimalFormat;
import java.util.Scanner;

public class HealthProfileTest {

   public static void main(String[] args) {
       Scanner input=new Scanner(System.in);
       boolean repeat=true;

       String name;
       int age;
       double weight,htFeet,htInches;
       //repeat a loop until user enter X
       do
       {
           //prompt and read the name
           System.out.print(" Enter name or X to quit: ");
           name=input.nextLine();

           //if user entered x, terminate the program
           if(name.toLowerCase().equals("x"))
           {
               System.out.println(" Goodbye!");
               repeat=false;
           }
           //else continue
           else
           {
               //prompt and read the age
               System.out.print("Your age: ");
               age=input.nextInt();

               //prompt and read the weight
               System.out.print("Your weight: ");
               weight=input.nextDouble();

               //prompt and read the height in feet
               System.out.print("Your height (feet): ");
               htFeet=input.nextDouble();

               //prompt and read height in inches
               System.out.print("Your height (inches): ");
               htInches=input.nextDouble();

               //create an object for HealthProfile
               HealthProfile healthObj=new HealthProfile();
               //set the name using setName method
               healthObj.setName(name);
               //set the age using setAge method
               healthObj.setAge(age);
               //set the weight using setWeight method
               healthObj.setWeight(weight);
               //set the height using setHeight method
               healthObj.setHeight(htFeet, htInches);

               //get the BMI using getBMI method
               double bmi=healthObj.getBMI();
               DecimalFormat df=new DecimalFormat("0.0");
               //print the results
               //print the name using getName method
               System.out.println(" Health Profile for "+healthObj.getName());
               //print the BMI
               System.out.println("BMI: "+ df.format(bmi));
               //print the category using getCategory
               System.out.println("BMI Category: "+healthObj.getCategory(bmi));
               //print the max HR using getMaxHR
               System.out.println("Max heart rate: "+healthObj.getMaxHR());
               input.nextLine();
           }

       }while(repeat);
   }

}