Advertisement
trand

Untitled

Mar 13th, 2017
826
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.85 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Fruit_or_Vegetable
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string input = Console.ReadLine();
  14.  
  15.             string[] fruits = { "banana", "apple", "kiwi", "cherry", "lemon", "grapes" };
  16.             string[] vegetable = { "tomato", "cucumber", "pepper", "carrot" };
  17.             if (Array.Exists(fruits, element => element == input))
  18.             {
  19.                 Console.WriteLine("fruit");
  20.             }
  21.             else if (Array.Exists(vegetable, element => element == input))
  22.             {
  23.                 Console.WriteLine("vegetable");
  24.             }
  25.             else
  26.             {
  27.                 Console.WriteLine("unknown");
  28.             }
  29.  
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement