不知道为啥1不行
参考代码:
public static void main(String[] args){ for(int i=2;i<200000;i++){ int a=i/100000; int b=i/10000%10; int c=i/1000%10; int d=i%1000/100; int e=i%100/10; int f=i%10; int sum=(int) Math.pow(a, 5)+(int) Math.pow(b, 5)+(int) Math.pow(c, 5)+(int) Math.pow(d, 5)+(int) Math.pow(e, 5)+(int) Math.pow(f, 5); if(sum==i){ System.out.println(sum); } } }
0.0分
0 人评分