当前位置: 代码迷 >> 综合 >> Week 2互评作业:java编写一个应用程序,验证以下等式是成立的:
  详细解决方案

Week 2互评作业:java编写一个应用程序,验证以下等式是成立的:

热度:81   发布时间:2023-12-12 20:05:16.0

第一次写的不满意又改了一次

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

 

 

有时候一个难题会在不经意间想到解决办法,所以不要放弃哦

以上代码原创,如有更佳欢迎交流

  相关解决方案