Vexus

Review questions(WIP)

Oct 23rd, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. package loop;
  2.  
  3. public class Loop {
  4.  
  5.     public static void main(String[] args) {
  6.         int s;
  7.         int N = 100;
  8.        
  9.         for (s = 1; s<=N;;{
  10.             System.out.println(s);
  11.         }
  12.        
  13.            
  14.     }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment