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
1 Posted Topic
Re: Number sequence
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(); }
The End.
SoftEngr