Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Basic Math Operations | First Acquaintance with Dart
Introduction to Dart

Basic Math OperationsBasic Math Operations

Numbers

You already know how to use the print() function. We used to output text, but what about numbers and mathematical calculations?

Remember to use print() if you want to display your data. Also, there is no need to use quotes (" " or ' ') since we are evaluating a mathematical expression this time.

dart

main.dart

Math Operations

Almost no program can do without mathematical calculations, so Dart supports the following mathematical operations:

  • + – addition;
  • - – subtraction;
  • / – division;
  • * – multiplication;
  • % - get the remainder of an integer division (modulo).
dart

main.dart

Math Expressions

We also can write math expressions. The sequence of actions will work the same as in mathematics, where 2+2*2 = 6, because the multiplication is done before the addition.

dart

main.dart

Select the correct numbers multiplication.

Select the correct answer

Everything was clear?

Section 1. Chapter 5
course content

Course Content

Introduction to Dart

Basic Math OperationsBasic Math Operations

Numbers

You already know how to use the print() function. We used to output text, but what about numbers and mathematical calculations?

Remember to use print() if you want to display your data. Also, there is no need to use quotes (" " or ' ') since we are evaluating a mathematical expression this time.

dart

main.dart

Math Operations

Almost no program can do without mathematical calculations, so Dart supports the following mathematical operations:

  • + – addition;
  • - – subtraction;
  • / – division;
  • * – multiplication;
  • % - get the remainder of an integer division (modulo).
dart

main.dart

Math Expressions

We also can write math expressions. The sequence of actions will work the same as in mathematics, where 2+2*2 = 6, because the multiplication is done before the addition.

dart

main.dart

Select the correct numbers multiplication.

Select the correct answer

Everything was clear?

Section 1. Chapter 5
some-alt