public class CastTest {
public static void main(String[] args) {
int a = 3;
int b = 4;
// otomatik cast yapılıyor.
double d = a / b;
System.out.println(d); // 0.0
// program ile cast yapılıyor
double d2 = (double) a / b;
System.out.println(d2); // 0.75
float f = 2.3f;
double d3 = (double) f;
System.out.println(d3); // 2.299999952316284
int c = (int) f;
System.out.println(c); // 2
int e = 3;
double d4 = e;
System.out.println(d4); // 3.0
}
}
Dosyayı İndir