第一次写的不满意又改了一次
package bei;import java.util.Scanner;public class lfh {public static void main(String[] args) {// TODO Auto-generated method stubint a;int b=3;double sum = 0;double pow;{for(a=3;a<6;a++){pow=Math.pow(a, b);sum+=pow;}System.out.println(sum);if(Math.pow(6, b)==sum) {System.out.println(true);}else {System.out.println(false);}}System.out.println( );{for(a=7;a<70;a++){pow=Math.pow(a, b);sum+=pow;}System.out.println(sum);if(Math.pow(180, b)==sum) {System.out.println(true);}else {System.out.println(false);}} }
}
216.0
true5832000.0
true
有时候一个难题会在不经意间想到解决办法,所以不要放弃哦
以上代码原创,如有更佳欢迎交流