We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#!/usr/bin/python # -*- coding: UTF-8 -*- i = 2 while(i < 100): j = 2 while(j <= (i/j)): if not(i%j): break j = j + 1 if (j > i/j) : print(i, " 是素数") i = i + 1