C언어

[C++] if문 연습

유호야 2022. 12. 20. 23:21
반응형

여기는 무조건 

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
            {
                Console.WriteLine("The given number is ODD");
            }
            Console.ReadKey();
        }
    }
}
반응형

'C언어' 카테고리의 다른 글

[C언어] 연산자 종류  (0) 2022.11.10