解题思路:
我写过这个,就是上一个题;差不多;;思想一样 。大家可以看看
注意事项:
参考代码:
#include <cstdio> #include <iostream> #include <cmath> #include <cstring> #include <string> #include <algorithm> using namespace std; int main() { int n, cnt = 0; scanf("%d", &n); for(int i = 2; i <= n; ++i) { while(n%i == 0 && n != i) { cnt++; printf("%d ", i); n /= i; } if(n == i) { cnt++; printf("%d\n%d\n", n, cnt); } } return 0; }
0.0分
0 人评分
模拟计算器 (C语言代码)浏览:966 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:643 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:636 |
【金明的预算方案】 (C++代码)浏览:873 |
Hello, world! (C++代码)浏览:1778 |
核桃的数量 (C语言代码)浏览:726 |
1054题解浏览:516 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:765 |
简单的a+b (C语言代码)浏览:643 |
A+B for Input-Output Practice (II) (C++代码)浏览:656 |