Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. public class main {
  2.     public static void main(String[] args) throws Exception {
  3.        for(long i = 10; i > 5; i = i + 99999999){
  4.            System.out.println(i);
  5.            try {
  6.                      Thread.sleep(1);
  7.  
  8.            } catch (InterruptedException e) {
  9.                      e.printStackTrace();
  10.            }
  11.        }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement