Computer Science, asked by anweshadubey, 2 months ago

int a = 5, b = 2; int c = a/b; System.out.println(c); predict the output​

Answers

Answered by amansarrafas24payxgs
0

Answer:

Output:

Output:2

I hope you find it useful... If you have any query do comment, I will try to solve it...

Answered by TheUntrustworthy
0

Given:

int a=5;

b = 2;

int c = a/b;

System.out.println(c);

Output:

c = 5/2

Therefore the Output:

5/2

Similar questions