OnJava8-Examples/operators/CastingNumbers.java
2015-09-07 11:44:36 -06:00

23 lines
584 B
Java

// operators/CastingNumbers.java
// ©2015 MindView LLC: see Copyright.txt
// What happens when you cast a float
// or double to an integral value?
import static com.mindviewinc.util.Print.*;
public class CastingNumbers {
public static void main(String[] args) {
double above = 0.7, below = 0.4;
float fabove = 0.7f, fbelow = 0.4f;
print("(int)above: " + (int)above);
print("(int)below: " + (int)below);
print("(int)fabove: " + (int)fabove);
print("(int)fbelow: " + (int)fbelow);
}
}
/* Output:
(int)above: 0
(int)below: 0
(int)fabove: 0
(int)fbelow: 0
*/