Java Programming Tutorial - If Statement


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

Comments