Advertisement
xNos

Untitled

May 23rd, 2020
1,867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class delay {
  4.  
  5.  
  6.     public static void main(String[] args) throws InterruptedException {
  7.         for (int i = 0; i < 5; i++)
  8.         {
  9.             System.out.println(new Date());
  10.             Thread.sleep(1000);
  11.         }
  12.     }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement