JAVA!!自动转换类型!

2024-11-25 14:50:15
推荐回答(1个)
回答1:

你用的分号是中文的

换成英文就可以了

public class ZiDongZhuanHuan {
public static void main(String[] args) {
short s=3;
int i=s;
float f=1.0f;
double d1=f;
long l=234L;
double d2=l;
System.out.println("short 自动类型转换为int后的值等于"+i);
System.out.println("float 自动类型转换为double后的值等于"+d1);
System.out.println("long 自动类型转换为double后的值等于"+d2);
}
}