Showing posts with label java trickey output problems. Show all posts
Showing posts with label java trickey output problems. Show all posts

Tuesday, 31 October 2017

java input output problms with solution



Question 01
Show the result of the following code:
System.out.println(2 * (5 / 2 + 5 / 2));
System.out.println(2 * 5 / 2 + 2 * 5 / 2);
System.out.println(2 * (5 / 2));
System.out.println(2 * 5 / 2);

Output
8
10
4
5