Posts

Showing posts with the label Java

continue keyword in Java

continue keyword in Java Syntax // condition continue ; Program public class continue_demo { public static void main( String args[]) { for ( int i= 1 ; i<= 10 ; i++) { if (i== 6 ) { continue ; } System.out.println(i); } } } Run Output 1 2 3 4 5 7 8 9 10 Explanation The Java continue statement is used to continue loop. It continues the current flow of the program and skips the remaining code at specified condition. continue keyword in innerloop Program public class continue_inner { public static void main( String args[]) { for ( int i= 1 ; i<= 5 ; i++) { for ( int j= 1 ; j<= 5 ; j++) { if (i== 3 && j== 3 ) { continue ; } ...

break keyword

break keyword in Java Syntax // condition break ; Program public class break_demo { public static void main( String args[]) { for ( int i= 1 ; i<= 10 ; i++) { if (i== 6 ) { break ; } System.out.println(i); } } } Run Output 1 2 3 4 5 Explanation The Java break is used to break loop or switch statement. It breaks the current flow of the program at specified condition. break keyword in inner loop Program public class break_inner { public static void main( String args[]) { for ( int i= 1 ; i<= 5 ; i++) { for ( int j= 1 ; j<= 5 ; j++) { if (i== 3 && j== 3 ) { break ; } System.out.println(i + "-" + j); ...

Hello world program in Java

Image
Hello world program in Java Program public class HelloWorld { public static void main(String args[]) { System.out.println("Hello World!"); } }; Run Output Hello World! Explanation Let's see what is the meaning of class, public, static, void, main, String[], System.out.println(). class  keyword is used to declare a class in java. public  keyword is an access modifier which represents visibility, it means it is visible to all. static  is a keyword, if we declare any method as static, it is known as static method. The core advantage of static method is that there is no need to create object to invoke the static method. The main method is executed by the JVM, so it doesn't require to create object to invoke the main method. So it saves memory. void  is the return type of the method, it means it doesn't return any value. main  represents startup of the program. String[] args  is used for command line argume...