我正在學習如何返回一個值並嘗試寫下面的代碼;返回一個值。輸出總是打印0
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
。我做錯了什麼? 謝謝。
感謝。我覺得很愚蠢。 –