OnJava8-Examples/operators/CastingNumbers.java

22 lines
592 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// operators/CastingNumbers.java
2015-11-14 16:18:05 -08:00
// <20>2016 MindView LLC: see Copyright.txt
2015-06-15 17:47:35 -07:00
// What happens when you cast a float
// or double to an integral value?
public class CastingNumbers {
public static void main(String[] args) {
double above = 0.7, below = 0.4;
float fabove = 0.7f, fbelow = 0.4f;
2015-11-03 12:00:44 -08:00
System.out.println("(int)above: " + (int)above);
System.out.println("(int)below: " + (int)below);
System.out.println("(int)fabove: " + (int)fabove);
System.out.println("(int)fbelow: " + (int)fbelow);
2015-06-15 17:47:35 -07:00
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
(int)above: 0
(int)below: 0
(int)fabove: 0
(int)fbelow: 0
2015-09-07 11:44:36 -06:00
*/