Saved Bookmarks
| 1. |
What is printed by the following piece of code?int a = 10;int b = 30;if (a * 2 < b) {a = a * 3;}if (b < a) {b++;} else {a--;}System.out.println(a + " " + b); |
| Answer» | |