Wednesday 24 April 2013

Write a program that displays "Congratulations! You have cleared this Level. Entering Level 2..." in red color. The output of this program is shown in the following figure. (Duration: 30 min)


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Congratulations
{
    class Game
    {
        static void Main(string[] args)
        {
            Console.ForegroundColor = ConsoleColor.Red;
            Console.WriteLine("\n\n\n\n\n\n");
            Console.WriteLine("\t\tCongratulations");
            Console.WriteLine("\n\n");
            Console.WriteLine("\t\t\t\tEntering! You have cleared this Level");
            Console.ReadLine();
        }
    }
}

No comments:

Post a Comment