how to end an if else statement in java code example

Example 1: 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

Example 2: if statement java

int x = 3;

if (x == 3) {
  // block of code to be executed if the condition is true
}

Tags:

Java Example