#Lutece0991. 求出范围内所有素数
求出范围内所有素数
Migrated from Lutece 991 求出范围内所有素数
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
给出整数,求出区间内的所有素数。
Input
有多组测试数据。输入的第一行是整数(),表示测试数据的组数。每一组测试数据只有一行,分别为整数和,两数之间有一个空格。该行没有其它多余的符号。。
Output
对应每组输入,输出一行区间内所有的素数,每个数后应有一个空格,如果区间内没有素数,则该行为空行。该行不能有其它多余的符号。
Samples
2
1 100
50 100
2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
53 59 61 67 71 73 79 83 89 97
Note
可以考虑筛法求素数。
Resources
wxiaoping C语言练习