Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- string product = Console.ReadLine();
- if (product == "tomato" || product == "cucumber" || product == "pepper" || product == "carrot")
- {
- Console.WriteLine("vegetable");
- }
- else if (product == "banana" || product == "apple" || product == "kiwi" || product == "chery"
- || product == "lemon" || product == "grapes")
- Console.WriteLine("fruit");
- else
- {
- Console.WriteLine("unknown");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement