Using the proper type conversion change the following java statement: float f=5.56; int i=f;. please help
Answers
Answered by
0
Answer:
use int i = (int) f;
hope so it helps!
Similar questions