Create a multiplication table of 8ths.
Integer num = 8; for(Integer i=0; i<=10; i++){ Integer result = num * i; System.debug(num + ' x ' + i + ' = ' + result); }