#7432: 為什麼會WA?? QAQ


k15682574 (楓心語嵐)

學校 : 臺北市立建國高級中學
編號 : 27330
來源 : [111.240.50.83]
最後登入時間 :
2015-02-25 21:41:05
a010. 因數分解 | From: [114.36.202.152] | 發表日期 : 2013-01-27 23:44

#include<iostream>

using namespace std;

int main(){
    int num,e=0,d=0;
    cin >> num;
int arr[100][100];
    for(int b=2,c=0;b<=num;b++){
c=0;
e=0;
for(int a=0;num%b==0;a++){
num = num/b;
c=1;
e++;
}
if(c==1&&d==1){
arr[b][e] = e;
            if(arr[b][e]!=1){
cout << " * " << b << "^" << arr[b][e];
}
else cout << " * " << b;
}
if(c==1&&d==0){
d=1;
arr[b][e] = e;
if(arr[b][e]!=1){
cout << b << "^" << arr[b][e];
}
else
            cout << b;
}
    }
return 0;
}
 
結果:WA
輸出短小
WHY?? 

 
ZeroJudge Forum