Môn học: Lập trình dotNET trên ngôn ngữ C# Bài tập: Viết chương trình nhập vào 1 số kiểm tra số chẵn, lẻ Trả lời: Bài tập viết trên visual studio 2015 CODE: Select All using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication5{ class Program { static void Main(string[] args) { Console.Write("Nhap vao mot so de kiem tra:"); int newInt = Int32.Parse(Console.ReadLine()); if (newInt % 2 == 0) { Console.WriteLine("{0} la so chan", newInt); } else { Console.WriteLine("{0} la so le", newInt); } Console.ReadLine(); } }}