Skip to content

Instantly share code, notes, and snippets.

using System;
class DigitAsWord
{
static void Main()
{
string n = Console.ReadLine();
switch (n)
{
case "0": Console.WriteLine("zero"); break;
case "1": Console.WriteLine("one"); break;