-->
当前位置:首页 > 题库

PROGRAMMING:Number of divisors (function implementation)

Luz5年前 (2021-05-10)题库411
Returns all the divisors of a positive integer. The main function inputs several integers and outputs their divisors in turn. One output occupies one line. If it is a prime, it outputs is prime in this line.
###Input example:
```in
100 101 1001
```
###Output example:
```out
nine
2 Is Prime
eight
```







answer:If there is no answer, please comment