- 4
What is the result of the following code?
int x = 15; int y = 4; int result = x / y; System.out.println(result);
1 Answer
+ 5
You can check it in playground..
https://www.sololearn.com/discuss/333866/?ref=app
int x = 15; int y = 4; int result = x / y; System.out.println(result);