#6805: RE:執行時期錯誤


wl01482665 (阿甘)

學校 : 樹德科技大學
編號 : 25755
來源 : [61.227.200.150]
最後登入時間 :
2016-05-28 23:27:52
d468. 简单求幂题(求幂系列题3) -- scientific | From: [111.254.164.146] | 發表日期 : 2012-07-19 13:13

import java.util.Scanner;

public class aaa{
public static void main(String [] argv){

Scanner abc = new Scanner(System.in);

while(abc.hasNext()){
long t = abc.nextLong();
long w = abc.nextLong();
long e =(long)Math.pow(t,w);
long f = (long)Math.pow(-2,63);
long g = (long)Math.pow(2,63);
if( f<=e && e <= g){
if(t ==0 && w !=0){
System.out.println("0");
}else if(t!=0 && w ==0){
System.out.println("1");
}else if(t==0 && w ==0){
System.out.println("All Over.");
}else{
System.out.println(e); 
}

}
}
}
}


請問我哪裡寫錯   或者是少寫   我想了很久還是沒有想到
 
ZeroJudge Forum