여기는 무조건 Console.ReadKey(); 를 작성해야 결과를 볼 수 있구나! using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Exercise4_ { internal class Program { static void Main(string[] args) { Console.WriteLine("Enter x: "); int x = Convert.ToInt32(Console.ReadLine()); if(x%2 == 0) { Console.WriteLine("The given number is EVEN"); } else { Conso..