C#

Moderators: None (Apply to moderate this forum)
Number of threads: 2722
Number of posts: 5749

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
How do I get the console to print the colors in reverse order Posted by Opticknerve on 17 May 2009 at 11:00 PM
/*
* Created by Opticknerve
* User: Administrator
* Date: 17/5/2009
* Time: 6:58 PM
*
*/

using System;
enum Colors {Red, Blue, Yellow, Purple, Green, Black, White, Orange, Pink, Gold}
class Colours
{
static void Main()
{
Console.WriteLine("Please choose your three most favourite colors");
string [] colors = new string [10];
colors = Enum.GetNames(typeof(Colors));
for (int i = 0; i < colors.Length; i++) {
Console.WriteLine( colors[i]);
}

Console.WriteLine("Please choose your first color");
string color1= Console.ReadLine();
Console.WriteLine("Please choose your second color");
string color2 = Console.ReadLine();
Console.WriteLine("Please choose your third color");
string color3 = Console.ReadLine();
Console.WriteLine("Here are your colors printed in reverse order {0}, {1}, {2}", color1, color2, color3);
}
}

How do i get the console to print the colors in reverse order



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.