Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: this: 123456 12345 1234 123 12 1 This is my program: public class Patterns{ public static void main (String [] args) { //set up for the rows for(int row = 6 ; row >= 1; row++){ for (int num = 1; num <= row; num++){ System.out.print(num); } System.out.println(); } } … |
The End.