how to end program in java
import static java.lang.System.exit;
public class Testing {
public static void main(String... str) {
exit(0);
//exit(0): It indicates successful end of java program.
/*exit(-1) or exit(1) or exit(any non zero value):
It indicates unsuccessful end of java program.*/
}
}