Advertisement
royroy23

Untitled

Jan 20th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApplication20
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. long a, b, c;
  14. a = 0;
  15. while (a <= long.MaxValue)
  16. {
  17. c = 0;
  18. a++;
  19. for (b = 1; b <= a; b++)
  20. if ((a % b) == 0)
  21. c++;
  22. if (c == 2)
  23. Console.WriteLine(a);
  24. }
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement