Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _06.FruitОrVegetable
- {
- class Program
- {
- static void Main(string[] args)
- {
- string food = Console.ReadLine();
- if (food == "banana" || food == "apple" || food == "kiwi" || food == "cherry" || food == "lemon" || food == "grapes")
- {
- Console.WriteLine("fruit");
- }
- else if(food == "tomato" || food == "cucumber" || food == "pepper" || food == "carrot")
- {
- Console.WriteLine("vegetable");
- }
- else
- {
- Console.WriteLine("unknown");
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment