33 | | Our example program creates 3 variables (boxes) named a, b, c. They are all integer variables (they can only hold integer numbers). The program then places the number 3 in variable a, the number 4 in variable b, and the product of whatever is in a and b into variable c. Finally, the program prints whatever value is in variable c. |
| 33 | === Understanding the program === |
| 34 | Our example program: |
| 35 | * Creates 3 variables (boxes) named a, b, c. They are all integer variables (they can only hold integer numbers). |
| 36 | * The program then places the number 3 in variable a, the number 4 in variable b, and the product of whatever is in a and b into variable c. |
| 37 | * Finally, the program prints whatever value is in variable c. |