/* CSC 15 Lab 4 Due one week from date assigned This lab lets you practice with if-else (and while) statements. First a quick review. Remember that both if-else (and while) statments can consists of blocks of other statements enclosed in {}'s: if (x < 10) { System.out.print("small"); x = x+1; } else { System.out.print("big"); x = x-1; } The above lines should be thought of as *a single* compound statement. Depending on the value of x, executing this statement will result in the execution of one or the other sequence of statments enclosed in {}'s These sequences of statements enclosed in {}'s are like miniture programs on their own. They can also contain other compound if-else statements, resulting in a nesting of statements. Similarly, a while loop executes a sequence of statments repeatedly until the boolean condition becomes false. int x = 0; while (x < 10) { System.out.print(x); x = x+1; } The above program segment will print 0123456789 on the screen. When writing compound statements such as if-else and while loops, it is very important to line up the brackets and use proper indentation: code that look like the following are *UNACCEPTABLE*: if (x<5) { if(y