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

PROGRAMMING:Qualitative factorization

Luz5年前 (2021-05-10)题库449
This topic requires reading in an integer greater than 1 and programming to decompose it into the product of several prime factors.
###Input format:
An integer greater than 1.
###Output format:
The input positive integer is decomposed into several prime factor products, and the prime factors appear in the order from small to large. For example: 30 = 2 \ * 2 \ * 2 \ * 5; If the integer itself is prime or prime, output directly, such as: 13 = 13.
###Input example:
```in
twelve thousand four hundred and eighty
```
###Output example:
```out
12480=2*2*2*2*2*2*3*5*13
```







answer:If there is no answer, please comment