- Oct 24, 2011
- 3,219
- 3,625
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Question
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine ("I'm self-learning C#, but wondering if I can bypass the classroom...");
Console.Write ("Do I absolutely have to attend a class to get certified?: ");
string yourInput = Console.ReadLine();
string response = (yourInput == "Yes") ? "have to take a class and have X amount of class hours to get certified" : "don't need to take a class. Just take a C# version of an aptitude test and then BAM! Certified.";
Console.WriteLine ("You said {0}, so I {1}", yourInput, response);
Console.ReadLine();
}
}
}
Please advise.
Thanks, BHW!