package com
.ff
.javabase
.day2
;
public class DataType {
public static void main(String
[] args
) {
int a1
= 180;
int b
= 139;
long a2
= a1
;
float f1
= a2
;
System
.out
.println(f1
);
float f2
= a1
+ b
;
System
.out
.println(f2
);
long l1
= 99999;
int l2
= (int)l1
;
System
.out
.println(l2
);
int b1
= 258;
byte b2
= (byte)b1
;
System
.out
.println(b2
);
float t1
= 10.5F;
long t2
= (long)t1
;
System
.out
.println(t2
);
}
}
转载请注明原文地址: https://lol.8miu.com/read-9491.html