#include<iostream> #include<cmath> using namespace std; int main(){ int n,count=0,x=2; cin>>n; cout<<n<<"="; while(n>1){ if(n%x==0){ if(n/x==1) {cout<<x;break;} n =n/x; count++; cout<<x<<"*"; } else{ x++; } } }
解题思路:
注意事项:
参考代码:
0.0分
0 人评分
钟神赛车 (C语言代码)浏览:911 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:770 |
Hello, world! (C语言代码)浏览:1315 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:511 |
蓝桥杯历届试题-九宫重排 (C++代码)浏览:2812 |
数组输出 (C语言代码)错误???浏览:602 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:1267 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:583 |
1017题解浏览:663 |