Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
844
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Proekt
  4. {
  5. class MainClass
  6. {
  7. public static void Main (string[] args)
  8. {
  9. int n = int.Parse(Console.ReadLine ());
  10. bool prime = true;
  11. for(int i = 2;i<= Math.Sqrt(n);i++){
  12. if(n % i == 0){
  13. prime = false;
  14. }
  15. }
  16. Console.WriteLine (prime);
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement