解题思路:
埃式 筛选出素数表,分解质因数 是一个合数分解出来的因素满足素数条件,被称为分解质因数,依次打印即可
注意事项:
参考代码:
#include <bits/stdc++.h> /** @author:d g w */ using namespace std; #define N 10000 int t[10000]; int main() { int a,b; fill(t,t+N,1); t[0]=t[1]=0; for(int i=2;i<N;i++){ if(t[i]){ for(int j=2*i;j<N;j+=i){ t[j]=0; } } } cin>>a>>b; for(int i=a;i<=b;i++){ int temp=i; int flag=0; cout<< i <<"="; while(temp!=1){ for(int j=2;j<=temp;j++){ if(temp%j==0&&t[j]){ temp/=j; if(flag==1){ cout<<"*"; } cout<<j; flag=1; break; } } } cout<<endl; } return 0; }
0.0分
2 人评分
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:530 |
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:910 |
十->二进制转换 (C语言代码)浏览:1330 |
Cylinder (C语言描述,蓝桥杯)浏览:1279 |
图形输出 (C语言代码)浏览:1422 |
陶陶摘苹果2 (C语言代码)浏览:650 |
分解质因数 (C++代码)浏览:1561 |
半数集问题 (C语言代码)浏览:968 |
母牛的故事 (C语言代码)浏览:504 |
C语言训练-求PI* (C语言代码)浏览:520 |