public class HowMuchSnow{
public static void main(String []args){
System.out.println("Hello World");
System.out.println("There are "+ SnowFall(3) + " inches of snow on the ground.");
}
public static float SnowFall(float hours){
float falling = 0.8f - (0.8f * 0.02f);
return falling * hours;
}
}
I hope this helps!