#14576: 來自台灣的小福利


Aaaaaaaaaaaaa (羅傑)

學校 : 臺北市立大同高級中學
編號 : 69102
來源 : [111.235.208.242]
最後登入時間 :
2023-09-13 09:02:41
d120. 10699 - Count the factors -- UVa10699 | From: [203.72.178.252] | 發表日期 : 2018-07-24 14:28

#include<iostream>
using namespace std;
int main(){
int n,p;
while(cin>>n){
if(n==0) break;
cout<<n<<" : ";
p=0;
for(int i=2; n>1; i+=(i==2?1:2)){
if(n%i) continue;
p++;
while(n%i==0) n/=i;
}
cout<<p<<endl;
}
}

 
ZeroJudge Forum