解题思路:
注意事项:
参考代码:
#include <iostream> using namespace std; bool isPrimeNumber(int n) { if(n<2) return false; for(int i=2; i*i<=n; ++i) if(n%i==0) return false; return true; } void PrimeFactor(int a,int b) { int i=a,j=b; for(i; i<=j; ++i) { if(isPrimeNumber(i)) { cout<<i<<"="<<i<<endl; } else { int t = 2; int t1 = i; cout<<t1<<"="; while(t1>1) { if(t1%t==0) { t1 = t1/t; cout<<t; if(t1!=1) cout<<"*"; } else t++; } cout<<endl; } } } int main() { int a,b; cin>>a>>b; PrimeFactor(a,b); return 0; }
0.0分
0 人评分
c primer plus 第十二章 12.1小节浏览:400 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:690 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:574 |
C二级辅导-计负均正 (C语言代码)浏览:523 |
判定字符位置 (C语言代码)浏览:849 |
数列问题 (C语言代码)浏览:1068 |
简单的a+b (C语言代码)浏览:473 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:620 |
陶陶摘苹果2 (C++代码)浏览:578 |