int bubble() { int k = 0; int i = 0; int j = 0; while (i <= 4) { j = 0; while (j <= 4) { j = j + 1; k = k + 1; } i = i + 1; } return k; }