Flash cards
Review the key moves
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.
Which statement best captures the main point of this lesson?
Complete the missing token from the example code.
___ << max(5, 10);Put the learning moves in the order that makes the concept easiest to apply.
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);