1.1-Introductie-Programmeren

Multiplication tables

Difficulty: Filled Outlined Outlined

Write a program that calculates and shows the multiplication table of a certain number.

Create one variable in which you store the number you want to have multiplied. Then write a program that will print the first 10 steps of the multiplication table.

Tip: In the example output below you see the asteriks (*) as character. For the real calculation you also need the asteriks. Then the asteriks is an operator, actually doing something with the variables. So this assignment requires that you create a printable sentence from strings, variables and calculations.

Example

Example