gpt4 book ai didi

java - 为什么它一直告诉我找不到符号?

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

其他第 2 章示例文件工作正常。我不明白为什么这个特定的类会出现这些问题 - 我在注释中标记了错误的地方。

package chapter2;

public class DataTypeConversion {
public static void main(String[] args) {
double x;
int pies = 10; //error: not a statement
x = y; //error: cannot find symbol: variable y

int pies = 10, people = 4;
double piesPerPerson;
piesPerPerson = pies / people;
piesPerPerson = (double) pies / people;

final double INTEREST_RATE = 0.069; //Note that the variable name does not have
amount = balance * 0.069; //error: cannot find symbol: variable: amount
amount = balance * INTEREST_RATE;
}
}

我的目标是使用这个代码作为一个独立的Java文件,所以我不知道为什么它提示这么多。有什么想法吗?

最佳答案

您必须在使用变量之前声明它们。在顶部添加这一行:

double y, amount, balance;

关于java - 为什么它一直告诉我找不到符号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17182684/

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