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
0
Answer:
a=10
b=20
c=a/b*50
10/20*50
c= 25
Explanation:
your answer .......
Similar questions