[dotNET - C#] Kiểm tra một số nguyên xem có phải số nguyên tố hay không? Phần mềm: Visual Studio CODE: Select All using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SoNguyenTo{ class Program { static void Main(string[] args) { int n; bool check = true; Console.Write("Hay Nhap So n: "); n = int.Parse(Console.ReadLine()); { for (int j = 2; j < n; j++) if (n % j == 0) check = false; } if (check) Console.Write("Day la so nguyen to"); else Console.Write("Day Khong phai la so nguyen to"); Console.ReadKey(); } }}// code by cnttqn.com