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: 0 10 210 3210 43210 543210 6543210 76543210 876543210 9876543210 code for this is /// [code] public class looping { public static void main(String args[]) { for (int x =0; x <10; x++) { for (int y =x; y >=0; y--) { System.out.print(y); } System.out.println(); } } }[/code] ///// |
The End.