Funky Conversions
What does this print?
class Test {
public static void main(String[] args) {
int big = 1234567890;
float approx = big;
System.out.println(big -(int)approx);
}
}
Previous slide
Next slide
Back to first slide
View graphic version