In week 6 in 26.1 in the last section, code reads:
public class MultiplicationTable {
public void print(int upTo) {
for(int i = 1; i <= upTo; i++) {
printMultiplicationTableRow(i, upTo);
System.out.println();
}
}
public void printMultiplicationTableRow(int multiplier, int howManyTimes) {
for(int i = 1; j <= howManyTimes; i++) {
System.out.print(i * multiplier + " ");
}
the "j" in the last part (j<= howManyTimes) should be "i" instead.
Hi,
Thanks for your report. I've logged this issue in our internal issue tracker and we'll fix it in a future version of the course material.