Answers for "how to delay in a while loop in java"

6

java delay

Syntax :
=========================================================
	Thread.sleep(1000); // 1000 milliseconds..          |
=========================================================
int i=0;
for(;;){
	Thread.sleep(2000); // set time delay to 2 seconds.. 
  	System.out.println(i++); // output : every output will display after 2 seconds..   	
}
Posted by: Guest on May-19-2020
0

how to use while loop in java

int count = 10;
while(count < 10) {
  	System.out.println(count);
  	count++;
}

//while will run when if the condition is true
//if count is less then 10 the condition is true
//if count is more then 10 or equals to 10 it is false.
Posted by: Guest on October-26-2021

Code answers related to "how to delay in a while loop in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language