bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/C++/C++ Tutorial
C++•C++ Tutorial

C++ Math

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind C++ Math?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ << max(5, 10);
3Order

Put the learning moves in the order that makes the concept easiest to apply.

The max( x , y ) function can be used to find the highest value of x and y :
C++ has many functions that allows you to perform mathematical tasks on numbers.
C++ <cmath> Library

C++ has many functions that allows you to perform mathematical tasks on numbers.

Max and min

The max( x , y ) function can be used to find the highest value of x and y :

Example

cout << max(5, 10);

And the min( x , y ) function can be used to find the lowest value of x and y :

Example

cout << min(5, 10);

C++ <cmath> Library

Other functions, such as sqrt (square root), round (rounds a number) and log (natural logarithm), can be found in the <cmath> header file:

Example

// Include the cmath library #include <cmath> cout << sqrt(64); cout << round(2.6); cout << log(2);

Previous

C++ C-Style Strings

Next

C++ Booleans