SoFunction
Updated on 2025-04-11

Shows the result of multiplication of the same number until the value is greater than 150


int max = (int)(150) + 1;
for (int i = 1; i <= max; i++)
{
int j = i * i;
(i + " × " + i + " = " + j + "<br />");
}