Posts
 
Reputation
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.65K
~250 People Reached
Favorite Forums
Favorite Tags
java x 1

1 Posted Topic

Member Avatar for newbieGirl

int z=0; for(int x=1; x<=5; x++){ for(int y=1; y<=x; y++){ System.out.print("0"); } for(int a=1; a<=4; a++){ if(a==4){ for(int y=a; y>=z; y--){ System.out.print(y); } z++; }else{ System.out.print(a); } } System.out.println(); }

Member Avatar for SoftEngr
0
250

The End.