qq_秦江辉_0
2015-10-26 22:42
public class HelloWorld{
public static void main(String[] args) {
double heightAvg1=176.2;
int heightAvg2=(int)heightAvg1;
System.out.println(heightAvg1);
System.out.println(heightAvg2);
}
}
输入上面的代码出现以下错误error: cannot find symbol
int heightAvg2=inrheightAvg1;
^
symbol: variable inrheightAvg1
location: class HelloWorld
1 error
error: cannot find symbol
int heightAvg2=inrheightAvg1;
^
symbol: variable inrheightAvg1
location: class HelloWorld
1 error
意思是在"int heightAvg2=inrheightAvg1;"这一行中,
你把变量名写错了,编辑器找不到"inrheightAvg1"这个变量在哪
正确的写法是"int heightAvg2=(int)heightAvg1;"
你再检查一下,如果按照你上面的那些代码,是不应该出现这个错误提示的,
或者有可能是你把代码改好了,但是没有保存,所以编辑器报错。
代码没问题 你是不是用的imooc练习器 他提示你错误 那应该是网络延时的问题
在我电脑上能够运行。
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题