#4381: 哪位大大幫一下忙....


andy78131 (姿勢就是力量)

學校 : 正修科技大學
編號 : 13317
來源 : [120.118.139.150]
最後登入時間 :
2011-04-13 16:29:36
d468. 简单求幂题(求幂系列题3) -- scientific | From: [61.223.225.18] | 發表日期 : 2010-10-10 18:37

和正解有點出入= =...

不知道哪邊有錯誤抓不出來...

 

#include <stdio.h>
#include <stdlib.h>

int main()
{
  long long int a=0,b=0,c=0;

while(scanf("%lld%lld",&a,&b)!=EOF)
{  
 
  c=pow(a,b);
  if(a!=0&&b!=0)
  printf("%lld\n",c);
  else if(a==0&&b==0)
  printf("All Over.\n");


}

  return 0;
}

 
ZeroJudge Forum