fork download
  1. // Online C# Editor for free
  2. // Write, Edit and Run your C# code using C# Online Compiler
  3.  
  4. using System;
  5.  
  6. public class HelloWorld
  7. {
  8. public static void Main(string[] args)
  9. {
  10. int k =0,s=0,a=1,flag=0;
  11. Console.WriteLine("Enter the Choice :");
  12. k=Convert.ToInt32(Console.ReadLine());
  13. s = k%2;
  14. Console.WriteLine(s+"\n");
  15. for(int h = 2;h <= a;h++)
  16. {
  17. Console.WriteLine("THIS :"+h+"\n");
  18. Console.WriteLine(a+"\n");
  19. if(k%h==0)
  20. {
  21. Console.WriteLine("Entered number is not PRime Numer");
  22. flag=1;
  23. break;
  24. }
  25. a++;
  26. }
  27. if(flag==0)
  28. {
  29. Console.WriteLine("Entered number is PRime Numer");
  30. }
  31.  
  32.  
  33. }
  34. }
Success #stdin #stdout 0.07s 30344KB
stdin
45
stdout
Enter the Choice :
1

Entered number is  PRime Numer