Computer Science, asked by rohitrohan977, 6 months ago

What will be the output of the following code. f=int (3+5/8.0) print (f)​

Answers

Answered by madhusudan2004
0

Answer:

// (3+5/8.0)

= 3+0.0

= 3

print(f)

// output 3

Similar questions