public static void Main(String[] args)
Console.WriteLine("Number in the range of 0 - 999:");
input(out NumberOriginal);
Houndreds = string.Empty;
WordHoundred = "Houndred";
Counting100 = Counting100 + 1;
Counting10 = Counting10 + 1;
Counting1 = Counting1 + 1;
Console.WriteLine(Houndreds + " " + WordHoundred + " and " + Tens + " " + Ones);
Console.WriteLine(Houndreds + " " + WordHoundred + " and " + Ones);
Console.WriteLine(Houndreds + " " + WordHoundred);
Console.WriteLine(Tens + " " + Ones);
Console.WriteLine("Zero");
private static void input(out double result)
while (!double.TryParse(Console.ReadLine(), out result));
private static void input(out int result)
while (!int.TryParse(Console.ReadLine(), out result));
private static void input(out Boolean result)
while (!Boolean.TryParse(Console.ReadLine(), out result));
private static void input(out string result)
result = Console.ReadLine();