#9058: 可否幫忙看哪裡出錯了呢?


circleDD (初學)

學校 : 國立武陵高級中學
編號 : 42238
來源 : [140.113.186.244]
最後登入時間 :
2016-09-29 19:24:02
a040. 阿姆斯壯數 | From: [140.113.128.97] | 發表日期 : 2014-08-04 02:30

 
請問版上高手為何一直出現WA (line:2)  ? 我在window 上用dev跑都正確阿! 
/* my program.c*/
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main()
{
  int n,m,i,j,count=0;
  int ch[32];
  int o1,print=0;
  scanf("%d %d",&n,&m);
  int sum=0;
  for (j=n;j<=m;j++)
  {   
     sum=0;
  count=0;
      int temp = j; 
  while(temp!=0)
   {   
     int o1 = temp%10;
    ch[count]=o1;
    temp = temp/10; 
 count++;     
   }

   for(i=0;i<count;i++)
  {
   int P = pow(ch[i],count);
   sum = sum+P;   
  }
  if(sum==j)
  {
  printf("%d ",j);
  print = 1;
     }
}
  if(print==0)
     {printf("none");} 
  return 0;
}

 
#9061: Re:可否幫忙看哪裡出錯了呢?


anandrewboy70900 (ShowTsai)

學校 : 國立中央大學
編號 : 27736
來源 : [203.204.218.144]
最後登入時間 :
2024-10-11 16:21:37
a040. 阿姆斯壯數 | From: [124.12.91.57] | 發表日期 : 2014-08-05 15:01

要重複輸入~~~


 
ZeroJudge Forum