viewing paste Unknown #5384 | Java

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
public  class   PrintPatterns{
 
    public  static  void    main(String[] args){
        
        //Initialize count as 0
        int count;
        //set row as 0 as a start point
        int row = 6;
        //define i as char to display ascii variables
        int i;
    
        
            for(i = 1; i <= 6; i++){
                for(count = 1; count <= 6; count++){
                    System.out.print(i+" ");
                }
                System.out.println(" ");        
            }
            
    }
        
}
 
gives me
 
1 1 1 1 1 1  
2 2 2 2 2 2  
3 3 3 3 3 3  
4 4 4 4 4 4  
5 5 5 5 5 5  
6 6 6 6 6 6  
 
 
I want 
1 
1 2 
1 2 3 
1 2 3 4 
1 2 3 4 5 
1 2 3 4 5 6 
 
 
public  class   PrintPatterns{
 
    public  static  void    main(String[] args){
        
        //Initialize count as 0
        int count;
        //set row as 0 as a start point
        int row = 6;
        //define i as char to display ascii variables
        int i;
    
        
            for(i = 1; i <= 6; i++){
                for(count = i; count <= i; count++){
                    System.out.print(i+" ");
                }
                System.out.println(" ");        
            }
            
    }
        
}
 
gives me
 
1  
2  
3  
4  
5  
6
 
I still want 
1 
1 2 
1 2 3 
1 2 3 4 
1 2 3 4 5 
1 2 3 4 5 6 
 
though
Viewed 720 times, submitted by Guest.