Learn to Program with ZedLX

Free Online Programming Course for Beginners

Introduction [6/10]

In programming, the * operator is used for multiplication.
[Run the program]

Round brackets (), also called parentheses, are used to group expressions.

Note that square brackets [] and curly brackets {} (also known as braces) have other uses and cannot be used for grouping expressions in this way.

Exercise:

  1. Display the result of the expression: 15*3+2*(90+10)

Loading...