0% found this document useful (0 votes)
27 views

If Statements

Uploaded by

niit cts
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views

If Statements

Uploaded by

niit cts
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

public class MyApplication{

public static void main(String[] args){

int amount = 0;

while (true){
System.out.println("In the loop");

if(amount == 6){
break;
}
amount++;
System.out.println("Out of the loop");

}
}
}

You might also like