class LeaveWhileLoops {
	public static void main(String [] args){
		int i=0;
		while(i<5){
			i=i+1;
			break;
			i=i+12;
		}
		System.out.println(i);
		//execution immediately leaves the while loop
		//when the break statement is encountered

		// they can appear in if statements
		i=0;
		while(true){
			if(
		}

	}
}
