Problem A: 找素数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:11 Solved:6

Description

输出100~200间的全部素数

Input

Output

要求数与数之间用1个空格隔开,每输出7个就换行  

Sample Input Copy

Sample Output Copy


HINT

定义‌:素数是指在大于1的自然数中,除了1和它本身以外不再有其他因数的数。例如,2、3、5、7、11、13、17等都是素数‌。
判断素数的方法如下:

试除法‌:这是最基本的方法,从2开始到n的平方根逐个尝试能否整除n,如果不能整除,则n是素数。

Source/Category