Thread: Weight/height Problem

  1. #1
    Registered User
    Join Date
    Mar 2007
    Posts
    4

    Weight/height Problem

    Well the whole problem goes as such:

    Write a program that asks for the user's height, weight, and age, and then computes clothing sizes according to the forumlas:

    Hat size = weight in pounds divided by height in inches and all that multiplied by 2.9

    Jacket size (chest in inches) = height times weight divided by 288 then adjusted by 1/8 of an inch for each 10 years over age 30 ( Note that the adjustment only takes place after a full 10 years. So there is no adjustment for ages 30 through 39, but 1/8 of an inch is added for age 40).

    Waist in inches = weight divided by 5.7 and then adjusted by adding 1/10 of an inch for each 2 years over age 28. (Note that the adjustment only takes place after a full 2 years. So, there is no adjustment for age 29, but 1/10 of an inch is added for age 30)

    Use functions for each calculation. Your program should allow the user to repeat this calculation as often as the user wishes.
    Ok so I have the following for the hatsize method:

    Code:
    double HatSize(double weight, double height)
    {
    
    double result = 2.9*(weight/height);
    
    return result;
    
    }
    What I need help is with the JacketSize and Waist in inches, maybe if you show me the jacketsize method I can figure out the waist in inches.


    Thanks for all help!!
    Edit/Delete Message

  2. #2
    Deathray Engineer MacGyver's Avatar
    Join Date
    Mar 2007
    Posts
    3,210
    Dude, they give you the answer right there... Don't be so lazy!

    Jacket size (chest in inches) = height times weight divided by 288 then adjusted by 1/8 of an inch for each 10 years over age 30 ( Note that the adjustment only takes place after a full 10 years. So there is no adjustment for ages 30 through 39, but 1/8 of an inch is added for age 40).
    (height * weight / 288).... then for every 10 years over 30, add 1/8 of an inch. Hint: (Age - 30) / 10 (integer division btw) is the amount of times to add 1/8 of an inch I believe (provided the person is over 30), but I'm not paying careful attention because obviously you barely put any effort into this.

    Seriously, the instructions are right there in front of you. This assignment hardly takes any effort in terms of actual coding. Don't be lazy and expect people to do your assignments.

    I already told someone off for the same kind of thing....
    Last edited by MacGyver; 03-24-2007 at 05:52 PM.

  3. #3
    Registered User
    Join Date
    Mar 2007
    Posts
    4
    how would I get 1/8 of a inch though?

  4. #4
    Registered User Noir's Avatar
    Join Date
    Mar 2007
    Posts
    218
    how would I get 1/8 of a inch though?
    Did you try dividing 1 by 8?

  5. #5
    Deathray Engineer MacGyver's Avatar
    Join Date
    Mar 2007
    Posts
    3,210
    Sometimes I wonder why people sign up for programming courses....

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Memory problem with Borland C 3.1
    By AZ1699 in forum C Programming
    Replies: 16
    Last Post: 11-16-2007, 11:22 AM
  2. Someone having same problem with Code Block?
    By ofayto in forum C++ Programming
    Replies: 1
    Last Post: 07-12-2007, 08:38 AM
  3. A question related to strcmp
    By meili100 in forum C++ Programming
    Replies: 6
    Last Post: 07-07-2007, 02:51 PM
  4. WS_POPUP, continuation of old problem
    By blurrymadness in forum Windows Programming
    Replies: 1
    Last Post: 04-20-2007, 06:54 PM
  5. beginner problem
    By The_Nymph in forum C Programming
    Replies: 4
    Last Post: 03-05-2002, 05:46 PM