Using Visual C#, create a program using a switch statement that will ask the user to enter a digit from 0 to 5 and will show the digit as a word in English. If the input is not between 0-5 print "Invalid Input."
Answers
Answer:
using System;
class DigitAsWord
{
static void Main()
{
Console.WriteLine("Please enter a number between 0 and 9:");
string a = Console.ReadLine();
switch (a)
{
case "0": Console.WriteLine("zero"); break;
case "1": Console.WriteLine("one"); break;
case "2": Console.WriteLine("two"); break;
case "3": Console.WriteLine("three"); break;
case "4": Console.WriteLine("four"); break;
case "5": Console.WriteLine("five"); break;
case "6": Console.WriteLine("six"); break;
case "7": Console.WriteLine("seven"); break;
case "8": Console.WriteLine("eight"); break;
case "9": Console.WriteLine("nine"); break;
default: Console.WriteLine("not a digit"); break;
}
}
}