Consider the Java code below. What will it output?
float pi = 3.14159f;
int piInteger = (int)pi;
System.out.println(piInteger);
Consider the Java code below. What will it output?
float pi = 3.14159f;
int piInteger = (int)pi;
System.out.println(piInteger);