首页 > 代码库 > [PAT]素因子分解(20)
[PAT]素因子分解(20)
#include "stdio.h"#include "math.h"long Prime(long);long PrimeCount(long,long);int main(){ int a,curPrime,cfCount; int v; int tPrime=0; scanf("%d",&a); v=Prime(a); curPrime=a; printf("%d=",a); if(v==1||v==a) { printf("%d",v); } else { tPrime=v; while(tPrime!=curPrime) { cfCount=PrimeCount(curPrime,tPrime); if(cfCount>1) { printf("%d^%d",tPrime,cfCount); curPrime=curPrime / pow((double)tPrime,cfCount); } else { printf("%d",tPrime); curPrime=curPrime / pow((double)tPrime,cfCount); } tPrime=Prime(curPrime); if(tPrime!=curPrime) printf("*"); } if(tPrime!=1&&tPrime==curPrime) { printf("*%d",tPrime); } } getchar(); getchar(); return 0;}long Prime(long num){ long i=0; if(num<2) return 1; for(i=2;i<num;i++) { if(num%i==0) return i; } return num;}long PrimeCount(long num,long cellnum){ long c=0; for(;num%cellnum==0;) { c++; num/=cellnum; } return c;}
[PAT]素因子分解(20)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。