#27723: 因數分解


lmama0813@gmail.com (良い夢を)

學校 : 不指定學校
編號 : 171001
來源 : [114.46.41.233]
最後登入時間 :
2021-11-23 09:50:28
a010. 因數分解 | From: [163.32.59.53] | 發表日期 : 2021-10-26 09:49

#include <stdio.h>

#include <stdlib.h>

#include <limits.h>

 

int main() {

long long a[50000][2]={0};

long long word ;

int count=0, stay=0, start=2 ;

 

scanf("%lli",&word) ;

while(word!=1){

while(word%start==0){

word=word/start ;

count++ ;

}

if(count!=0){

a[stay][0]=start ;

a[stay][1]=count ;

stay++ ;

}

count=0 ;

start++ ;

}

 

long long running=0 ;

 

while((a[running][0]!=0)||(a[0][0]==0)){

if((a[running][1]!=1)&&(a[running][1]!=0)){

printf("%lli^%lli ",a[running][0],a[running][1]) ;

}else if(a[running][1]==1){

printf("%lli ",a[running][0]) ;

}else if(a[0][0]==0){

printf("%lli ",a[running][0]) ;

}

if(a[running+1][0]!=0){

printf("* ") ;

}

running++ ;

}

return 0;

}

 
ZeroJudge Forum