Код простого числа C#
<pre lang="c#">
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace p2 { class Program { static void Main(string[] args) { Console.WriteLine("Please enter the number in which you want ot find the prime no"); int a = Convert.ToInt32(Console.ReadLine()); bool isPrime = true; for (int i = 1; i <= a; i++) { for (int j = 2; j <= a; j++) { if (i != j && i % j == 0) { isPrime = false; break; } } if (isPrime) { Console.WriteLine("Prime:" + i); } isPrime = true; } Console.ReadLine(); } } }
Пожалуйста, проверьте, правильный ли код или нет?