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 #72.9K
1 Posted Topic
Re: tree view
//For first pgm this s the soln.... Console.Write("Enter no b/w 1-9:"); int n=Convert.ToInt32(Console.ReadLine()); for (int i = 1; i <= n; i++) { Console.Write(i); int j = i; while (j != 1) { j--; Console.Write(j); } if (j == 1) { Console.WriteLine(); } } Console.ReadKey(); //;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
The End.
jeenujoy