ok the error is that it doesnt recognize the package class.
package celsiustofahrenheit;
public class CelsiusToFahrenheit {
public static void main(String args [])
{
double celsius, fahrenheit = 0;
System.out.println("\n\tEnter temperature in celsius: ");
celsius = MyInput.readDouble();
fahrenheit = 1.8 * celsius + 32;
system.out.println("\n\tThat is " + fahrenheit + " degrees fahrenheit.");
}
}
is there another way to get around the "package" stuff.. like are there other classes ( I THINK they're called classes, such a newb -- sorry) such as java.io.*; or something that can be put in place of the package stuff?
Thanks.