魏老四OJ
Home
ProblemSet
Source/Category
Contest
题单
Status
Ranklist
F.A.Qs
Login
1495: 【入门】求因子数量
Memory Limit:128 MB
Time Limit:1.000 S
:
Creator:
Submit:24
Solved:15
Submit
Statistics
Description
从键盘读入一个整数n(n<=100),请求出1~n的每个数的因子个数(求因子个数时,不含1和自己,比如10只有2个因子),每行一个打印出来。
Input
一个整数n
Output
n行,每行一个整数,代表了每个整数的因子个数
Sample Input
10
Sample Output
0 0 0 1 0 2 0 2 1 2
Source/Category
嵌套循环
Submit
Statistics