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