6523: C语言程序设计教程(第三版)课后习题7.1
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:2
Solved:0
Description
用筛法求N之内的素数。
Input
N
Output
0~N的素数
Sample Input Copy
100
Sample Output Copy
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
HINT
数组大小动态定义?函数?