Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

how to end a program in an if statement java

 if(letters >=5 && digits >=5)
            { 
                System.out.println("Great job! String is acceptable");
                System.exit(0);
            }
            
            //after use, letter and digit variables reset to 0 
            letters = 0; 
            digits = 0; 
        } //end a program within an if statement, which is nested with a while loop 
		  //with the use of System.exit(0)
		  //0 indicates successful termination 
		  //any non-zero value indicates an unsuccessful termination 
Comment

exit an if statement java

continue; // skips the current itteration
break; // breaks the itteration
Comment

PREVIOUS NEXT
Code Example
Java :: difference between stringbuffer and stringbuilder 
Java :: java mostrar resultados ventana grafica 
Java :: how to delete an element from an array in java data structure 
Java :: get free player inventory slots spigot 
Java :: Stop gninnipS My sdroW! javascrip codewars 
Java :: linked list vs array list vs vector 
Java :: how to spilt the string with comma in jaav 
Java :: interface java 
Java :: dowload htpasswd file java 
Java :: Java Add Elements to an ArrayList 
Java :: how to remove scroll pane border 
Java :: set gamemode of player spigot 
Java :: How to make a Java Main Menu Loop after using a case 
Java :: java integer division to float 
Java :: set union java 
Java :: java session timeout 
Java :: java local method 
Java :: java list newline 
Java :: 9999999999999 
Java :: Java Creating a TreeMap 
Java :: Value Change Listener to JTextField 
Java :: java string split underscore 
Java :: java get number at the end of string 
Java :: is c# similar to java 
Java :: processing pi 
Java :: java string util if empty default 
Java :: call by value and call by reference in java 
Java :: json java 
Java :: round to the next multiple of 5 
Java :: java convert char to charsequence 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =