Java Programming Tutorial - If Statement on January 06, 2019 Get link Facebook X Pinterest Email Other Apps 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
Comments
Post a Comment