Computer Science, asked by kraghaver, 1 year ago

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 ScienceTex
0
Not sure about the answer
Similar questions