i need some help writing a for-loop please but i can't get it.
i need to add the numbers 0 to 63 in a table like this: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 etc.
for (int j = 0; j < 8; j++) {
for (int i = 0; i < 8; i++) {
table.setValueAt(""+(i+(j)), i, j);
}
}
but the inputted values are not correct can you please help