Calculate 6*9 in different bases
GolfScript, 39 characters
35,{2+'6 * 9 = '54@base{.9>7*+48+}%n+}/
Result can be seen here.
Octave, 49
for i=2:36printf("6 * 9 = %s\n",dec2base(54,i))end
Javascript, 57 55 bytes
for(i=2;++i<37;)console.log('6 * 9 = '+54..toString(i))
Could be shortened to 49 with alert
, but I don't want to submit anyone to that...