Computer Science, asked by abhaacharya1435, 11 months ago

Determine and explain the output of the following code:
int a=10,b=20,c;
c =a/b*50;
System.out.println(c);

Answers

Answered by Anonymous
0

Answer:

a=10

b=20

c=a/b*50

10/20*50

c= 25

Explanation:

your answer .......

Similar questions