gpt4 book ai didi

java - 为什么我的 Java 代码不执行 System.out.println?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:33:38 25 4
gpt4 key购买 nike

<分区>

我正在使用 Netbeans IDE,它没有检测到任何错误。我只是好奇为什么这段代码没有执行。仅供引用,这是“思考 Java:如何像计算机科学家一样思考”中的练习 4.4。

import java.lang.Math;
public class Exercise {
public static void checkFermat(int a, int b, int c, int n){

if ((Math.pow(a, n))+(Math.pow(b, n))==(Math.pow(c, n)) && n!=2){
System.out.println("Holy smokes, Fermat was wrong!");
}
else{
System.out.println("No, why would that work?");
}
}

public static void main(String args[]){
int a = 8;
int b = 4;
int c = 10;
int n = 3;
}
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com