public static void Main()
Console.WriteLine("Enter the name of a fruit:");
string fruit = Console.ReadLine().ToLower();
fruitType = "It's a type of pome fruit.";
fruitType = "It's a tropical fruit.";
fruitType = "It's a berry.";
fruitType = "It's a small, round fruit typically found in clusters.";
fruitType = "I'm not sure about that fruit.";
Console.WriteLine(fruitType);