Advertisement
Guest User

Problem 3

a guest
Dec 13th, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 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 task_3
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string cards = "2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K and A";
  14.             char check =char.Parse(Console.ReadLine());
  15.             if (cards.Contains(check) == true)
  16.             {
  17.                 Console.WriteLine("YES!");
  18.             }
  19.             else Console.WriteLine("NOOO!");
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement