How many times will "Tricky!" be printed by the following loop?
int c = 5; for (int i = 2; i <= c; i++) { for (int j = 0; j < i; j++) { System.out.println("Tricky!"); } }
Answers
Answered by
0
Not sure about the answer
Similar questions