Nested IF Example Program Get link Facebook X Pinterest Email Other Apps - July 08, 2019 public class Test { public static void main(String args[]) { int x = 30; int y = 10; if( x == 30 ) { if( y == 10 ) { System.out.print("X = 30 and Y = 10"); } } }} Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment