Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #107.70K
~67 People Reached
Favorite Forums
Favorite Tags
java x 1

1 Posted Topic

Member Avatar for finalheavenx

1) public class Test { public static void main(String[] args) { for (int i=10;i>0;i--) { for(int j=0;j<i;j++) { System.out.print(i+" "); } System.out.println(""); } } } output: 10 10 10 10 10 10 10 10 10 10 9 9 9 9 9 9 9 9 9 8 8 8 8 8 …

Member Avatar for sameerrathore
0
67

The End.