Answers for "sleep for milliseconds in java"

0

sleep for milliseconds in java

public class SleepThingy {
	public static void main(String[] args)
    throws InterruptedException {
    	// the Thread.sleep function throws an InterruptedException
      	for (int i = 1; i < 11; i++) {
        	System.out.println(i);
          	Thread.sleep(1000); // sleep 1000 ms or 1 sec
        }
    }
}
Posted by: Guest on March-21-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language