Create a new class called idealweight

Assignment Help JAVA Programming
Reference no: EM131154605

Introduction to Programming

Quiz: More Expressions

Activities

1. Create the uncp.csc1760.quizzes.quiz2 package.

2. In the new package, create a new class called IdealWeight. Make sure your new class is fully defined and has a main method. This  class will calculate the ideal weight (and the acceptable ranges) of both males and females. The testing of this functionality will also be included.

3. Inside the class but outside the main method, paste the following code:

public static void printIdealWeight(int feet, int inches)
{
//constants
//variables declarations and calculations
//output
}

This method will calculate and print out the ideal weight for males and females along with a range of acceptable weights.

Important Note: There are two parameters to the function printIdealWeight: feet and inches. They represent the person's height.

So, if this code was run for a person who is 5'7", then feet would have the value 5 and inches would have the value 7. These are variables that you will need in your calculations.

4. Add JavaDoc comments ("/**") for the main method, the printIdealWeight method and the class. Be sure to include:
• A brief description of the purpose (for all of them)
• @author tags (for the class)
• @version tag (for the class)
• @param tag (for both methods)

5. Use the following description for the rest of the instructions. According to one study, the ideal weight for a female is 100 pounds plus 5 pounds for each inch in height over 5 feet. For example, the ideal weight for a female who is 5'3" would be 100 + 5 * 3 = 115
pounds. For a male the ideal weight is 106 pounds plus 6 pounds for each inch in height over 5 feet. For example, the ideal weight for a male who is 6'2" would be 106 + 14*6 =190 pounds (because he is 14 inches above 5 feet).

Generally, however, a person's weight is okay if it is within about 15% of the ideal. That is, a person's weight is considered normal if it is between the ideal weight minus 15% to the ideal weight plus 15%.

6. In the main method, add 3 tests. You will be calling your code with something like :

printIdealWeight(5,0); //Height = 5 ft 0 in

Where the 5 is the number of feet and the 0 is the number of inches.

7. Add comments above the tests indicating the expected values (including the ranges) for both sexes. To do this, you will need to determine what formulas you need to develop to calculate the values. It is strongly suggested that you record your steps as comments for your reference.

a. Determine how to convert a height in feet and inches into a total number of inches. (You did this in a previous lab.)

b. Determine how to find the number of inches over 5 feet if you have a height in inches.

c. Determine the formula for the ideal weight of a female. Use the description above.

d. Determine the formula for the ideal weight of a male. Use the description above.

e. Determine how to calculate 15% of a value.

Once you have determined the formulas you need, calculate the answers you expect from your tests and add them above your tests as
comments.

Note: If you are unsure of your formulas, ask the instructor.

Note: Running the program at this point will not produce any output.

8. Create two int constant values. One should store the base weight for females (i.e. the ideal weight for a female that is 5'0") and the
other should store the pounds per inch for each inch above 5'0" for females (i.e. the increase in the ideal weight for each inch in
height). Name them appropriately and place them in the printIdealWeight method under the constants comment.

9. Declare three int variables and assign values to them. Pick good names for the variables that represent their purpose. Place the  code below the calculation comment in the printIdealWeight method.

a. Declare an int variable to store the total height in inches. Use the feet and inches variables and your formula from step 7 to
calculate its value.

b. Declare an int variable to store the number of inches above 5'0". Use the total height in inches and your formula from step 7 to calculate its value.

c.Declare an int variable to store ideal weight for a female. Use your constants, the number of inches above 5'0" and your formula from step 7 to calculate its value.

10. Using print or println statements, create an output message that displays the ideal weight. The message must indicate that the
ideal weight is for a female.

a.Also print the range of acceptable weights. You will need your formula for calculating 15% of a value and the ideal weight. These can be stored in variables (what type should they be?) or the calculations can be done directly in the output statements. If you use additional variables, be sure to declare them.

Sample output is provided below. Your output does not have to match the sample as long as it provides the required information.

11. Save and run the program. Check to see if you

12. Repeat steps 9-12 for the male ideal weight. You do not need to calculate the total height in inches or the number of inches above 5'0" again. You can just use those values in your other calculations. You will need separate variables for the ideal weight for a male and, if you are storing them, 15% below and 15% above the ideal weight for a male.

13. Run the program and check to see if your output matches your expectations.

14. Format the class and save it.

15. Submit all of your .java files to Blackboard.

Attachment:- Assignment.rar

Reference no: EM131154605

Questions Cloud

What is the original premise of sas culture : What is the original premise of SAS culture? What is the importance of the SAS culture on work/home balance
What expectations do your audience members have : What expectations do your audience members have in relation to your speech? What are possible beliefs audience members have about you according to your demographic qualities? What environmental factors might shape the way your audience members respon..
Essay - value of dissent in our society : Write an essay on one of the given topics, it must not exceed from words. Online Learning: A Boon(2500 Words with reference) and Value of dissent in our society (2500 Words with reference)
Create a java application that stores employee details : SD2720: Module Using Operators, Arrays, and Constructs Lab. Create a Java application that stores and maintains the employee details, including employee ID, employee name, department, designation, marital status, and date of marriage, in a multidim..
Create a new class called idealweight : CSC 1760 Introduction to Programming. In the new package, create a new class called IdealWeight. Make sure your new class is fully defined and has a main method. This class will calculate the ideal weight (and the acceptable ranges) of both males..
Write a computer program to automatically analyze data : For this assignment, you have been asked to write a computer program to automatically analyze some of the data collected by some experiments. Data analysis in scientific research is a complicated endeavor, so we will simplify our task by just calc..
Write a java program with the given functionalities : Write a Java program with the following functionalities: It should use a one-dimensional array. It should enable the user to search for an element in the array
Design and implement the class day : Design and implement the class Day that implements the day of the week in a program. The class Day should store the day, such as Sun for Sunday. The program should be able to perform the following operations on an object of type Day: Set the day
What is the optimum operating reaction temperature : For a reversible exothermic elementary catalytic reaction of the type A B, what is the optimum operating reaction temperature at a conversion level , xa = 0.8 given- K1 = exp ( 10 -5000/T) K2 = exp ( 40 - 15000 /T) and maximum allowable temperatu..

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd