sorry to be a nuisance, but ive solved my other problems but now come acropt another one. The problem is that the line highlighted has an error message saying '<identifier> expected' . What do i do to solve it?
/**
* create an input temperature gauge.
*
* @author (chris twaits)
* @version (12/10/07)
*/
public class temperature
{
private System.out.printIn;
/**
* create input and response for user.
* Method does all the work.
*/
public void input (int temperature)
{
if(0 < 20) {
System.out.printIn("wear some shorts and sandals");
}
else {
System.out.printIn("please insert only numbers,ranging from -40 to 75");
}
}
}