Note: the code below has several errors of different types. I will show you in class what this file SHOULD do, and charge you with the task of "cleaning up the code". ************************************************************ public class ifelseexampleAwitherrors { public static void main(String[] args) { int age; String str="" for (age = 1; age<=30; age=age+1) { if (age<5); {str=" not old enough to go to school"; } if(age>=5&&age<19) {str=" probably in school"; if(age>=19) {str=" most likely have graduated from school"; } System.out.println("If your age is "+age+ years you are "+str); } } } **********************************************************