gpt4 book ai didi

java - 返回一个值。输出总是打印0

转载 作者:行者123 更新时间:2023-12-01 16:55:07 25 4
gpt4 key购买 nike

我正在学习如何返回一个值并尝试编写以下代码;

public class JustTryingReturn {

static int a, b;
static Scanner sc = new Scanner(System.in);
static int nganu() {
return a+b;
}

public static void main(String[] args) {
int c = nganu();
System.out.println("Enter number ");
a = sc.nextInt();
b = sc.nextInt();
System.out.println(c);
}

}

但输出始终打印 0 而不是 a+b。我做错了什么?谢谢。

最佳答案

你应该打电话

int c = nganu();

分配ab 的输入值后。否则,当您计算总和时,默认情况下它们仍将包含 0

System.out.println("Enter number ");
a = sc.nextInt();
b = sc.nextInt();
int c = nganu();
System.out.println(c);

关于java - 返回一个值。输出总是打印0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34115770/

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