Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main()
- {
- double n = double.Parse(Console.ReadLine()); ;
- int counter = (int)Math.Sqrt(n);
- bool isPrime = true;
- if (n > 1)
- {
- for (int cnt = 2; cnt <= counter; cnt++)
- {
- if (n % cnt == 0)
- {
- isPrime = false;
- break;
- }
- }
- }
- else
- {
- isPrime = false;
- }
- if (isPrime) { Console.WriteLine(true); }
- else { Console.WriteLine(false); }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement