问答详情
源自:2-9 Java中的自动类型转换

为什么显示不出来,难道还有那是错的?

public class HelloWorld{
    public static void main(String[] args) {
  int avg1=78.5;
  int rise=5;
  double avg2=avg1+rise;
System.out.println("考试平均分:"     +avg1);
System.out.println("调整后的平均分:" +avg2);
 }
}

error: possible loss of precision int avg1=78.5; ^ required: int 什么意思嘛 found: double 1 error

提问者:qq_岚风依旧_0 2015-01-24 10:14

个回答

  • _Exception
    2015-01-24 10:45:29
    已采纳

    你先看八种数据类型吧,,

  • sky233
    2015-01-24 11:32:15

    int 可以隐转换成 double double 要强转换 int

  • 仗剑闯江湖
    2015-01-24 10:18:45

    声名了一个int,给的却是一个double的78.5,这能对?