Computer Science, asked by siddharth304, 13 days ago

Using the proper type conversion change the following java statement: float f=5.56; int i=f;. please help​

Answers

Answered by balpreet20
0

Answer:

use int i = (int) f;

hope so it helps!

Similar questions