gpt4 book ai didi

java - 为什么我会收到类型不兼容的错误?

转载 作者:行者123 更新时间:2023-12-01 22:40:57 25 4
gpt4 key购买 nike

public static void main(String[] args) {

double f = methodC(1234); **//error is on this line & pointing the opening bracket**
System.out.println(f);

}

public static void methodC(double a){
if (a==0){
System.out.println(0);
}
else{
double n= a/10;
double r= a%10;
System.out.println(r);

}

}

每当我编写程序时,我都会不断收到这些错误。不需要代码的答案..只是想知道为什么我会收到这些错误。

最佳答案

methodC 没有返回值。它应该返回一个 double 值以便赋值 - double f = methodC(1234) 才能工作。

关于java - 为什么我会收到类型不兼容的错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26148017/

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