Thread: Nested loops?
View Single Post
  #2 (permalink)  
Old 08-03-2007, 05:13 PM
yiweiang yiweiang is offline
Member
 
Join Date: Aug 2007
Posts: 15
yiweiang is on a distinguished road
Code:
public class Text1 { public static void main(String Args[]) { for(int x=0; x<10; x++) { for(int y=0; y<10; y++) { System.out.println(x+", "+y); } } } }

Last edited by levent : 08-03-2007 at 05:14 PM. Reason: Code placed inside [code] tag.
Reply With Quote