#29544:


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a010. 因數分解 | From: [182.233.207.92] | 發表日期 : 2022-03-11 03:32

#include <iostream>

#include <string> 

using namespace std;

int main()

{

int a, b=2, c=0;

cin >> a;

while (a > 1) 

{

while (a%b==0) 

{

a = a / b;

c = c + 1;

}

if (c != 0)

{

if (c == 1)

{

cout << b;

}

else

{

cout << b << "^" << c;

}

 

if (a != 1)

{

cout << " " << "*" << " ";

}

}

b = b + 1;

c = 0;

}

}

 
ZeroJudge Forum