Guest User

Untitled

a guest
Jan 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public static void main(String[] args) {
  2.         for(int i=1; i<200; i++) {
  3.             System.out.print(i+" ");
  4.             if(i%26 == 0){
  5.                 System.out.println();
  6.             }
  7.         }
  8.            
  9.     }
Add Comment
Please, Sign In to add comment