Advertisement
wingman007

Java - for loop

Nov 14th, 2013
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public static void main(String[] args) {
  2.     for(int i=1; i<11; i++){
  3.         System.out.println(i);
  4.     }
  5. }
  6.  
  7. /* no {}
  8. public static void main(String[] args) {
  9.     for(int i=1; i<11; i++)
  10.         System.out.println(i);
  11. }
  12. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement