Java Programming Tutorial - 10 - If Statement

package apples;


public class boy {
public static void main (String []args) {
int test = 6;
if (test == 9) {
System.out.println("yes");
}else {
System.out.println("This is else");
}

Comments