import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int[]a=new int[10]; int[]num=new int[10]; int cnt=-1; for (int i = 2; i*i <=n; i++) { if(n%i==0){ cnt++; num[cnt]=i;} while(n%i==0){ a[cnt]++; n/=i; } } if(n>1){ cnt++; num[cnt]=n;a[cnt]=1; } String str=""; if(a[0]==1) str+=num[0]; else str+=num[0]+"^"+a[0]; for (int i = 1; i <=cnt; i++) { if(a[i]==1)str+="*"+num[i]; else str+="*"+num[i]+"^"+a[i]; } System.out.println(str); } }
0.0分
0 人评分
C二级辅导-同因查找 (C语言代码)浏览:590 |
点我有惊喜!你懂得!浏览:1415 |
C语言训练-求矩阵的两对角线上的元素之和 (C语言代码)浏览:3472 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:566 |
校门外的树 (C语言代码)浏览:988 |
WU-小九九 (C++代码)浏览:1713 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |
星期判断机 (C语言代码)浏览:892 |
剪刀石头布 (C++代码)浏览:1811 |