Computer Science, asked by siddharth304, 19 days ago

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

Answers

Answered by nidhipatni5
1

Answer:

int I = (float)f;

Explanation:

write it in the program

Similar questions