为什么我在myeclipse里输入上面的代码无法通过呢
package we;
public class QiangZhiZhuanHuan {
public static void main(String[] args){
double heightAvg1=176.2;
int heightAvg2=(int)heightAavg1;/*无法通过,但是在咱们这里就能通过*/
System.out.println(heightAvg1);
System.out.println(heightAvg2);
}
}