// import the libraryimport java.lang.Thread;try{// sleep for 1 second (1000 milliseconds)Thread.sleep(1 * 1000);}catch(InterruptedException e){e.printStackTrace();}finally{}
// import the libraryimport java.lang.Thread;try{// sleep for 1 second (1000 milliseconds)Thread.sleep(1 * 1000);}catch(InterruptedException e){e.printStackTrace();}finally{}
Comments