Hey Guys, I'm taking a java programming class for Fall 2010 and I have to answer this problem to see at what level I would be classified as...this is for practice only..any help appreciated since I don't know where to begin.

You are required to write a program that can be used to convert imperial measurements into metric measurements. Write a class called ConversionCalculator. The class accepts two quantities:
A letter in indicating whether the measurement is in pounds (p/P), yards (y/Y), or Fahrenheit (f/F).
A numeric quantity that must be converted, which must be converted to Newton, meters, and kilometers, respectively.
Imperial Metric
1Pound 4.9 Newtons
1 Foot 0.3048 Meters
1 degree Fahrenheit -17.22 Celsius
The rule formula converting the temperature is: celsius = 5/9*(Fahrenheit - 32.0);
Use the switch statement to determine the measurement whether it is in pounds, yards, or Fahrenheit in order to carry out the conversion. I have started the test class for you.
class TestConversionCalculator
{
public static void main(String[] arg)
{
char ch = GetData.getCharacter("Enter a character denoting the type of measurement);
double amount = GetData.getDouble("Enter the measurement to be converted);
ConversionCalculator cc = new ConversionCalculator(ch, amount);
cc.convert();
// display the output
}
}

if anyone would provide me with any help I would appreciate it.....

You are required to write a program that can be used to convert imperial measurements into metric measurements. Write a class called ConversionCalculator. The class accepts two quantities:
A letter in indicating whether the measurement is in pounds (p/P), yards (y/Y), or Fahrenheit (f/F).
A numeric quantity that must be converted, which must be converted to Newton, meters, and kilometers, respectively.
Imperial Metric
1Pound 4.9 Newtons
1 Foot 0.3048 Meters
1 degree Fahrenheit -17.22 Celsius
The rule formula converting the temperature is: celsius = 5/9*(Fahrenheit - 32.0);
Use the switch statement to determine the measurement whether it is in pounds, yards, or Fahrenheit in order to carry out the conversion. I have started the test class for you.
class TestConversionCalculator
{
public static void main(String[] arg)
{
char ch = GetData.getCharacter("Enter a character denoting the type of measurement);
double amount = GetData.getDouble("Enter the measurement to be converted);
ConversionCalculator cc = new ConversionCalculator(ch, amount);
cc.convert();
// display the output
}
}

if anyone would provide me with any help I would appreciate it.....