Example of If statements
(same use of {}, if and else)
if (creditsEarned >= 90)
System.out.println(“Senior Status”);
else if (creditsEarned >= 60)
System.out.println(“Junior Status”);
else if (creditsEarned >= 30)
System.out.println(“Sophomore Status”);
else
System.out.println(“Freshman Status”);