Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Arithmetic Operations | Introduction
C++ Data Types
course content

Course Content

C++ Data Types

C++ Data Types

1. Introduction
2. Numerical Data Types
3. Text Data Type
4. Other Data Types and Concepts

bookArithmetic Operations

Setting the precision

As you already should know you can perform basic data manipulation using arithmetic operators such as addition (+), subtraction (-), division (/), and multiplication (*). Additionally, the modulus operator (%) calculates the remainder of a division.

cpp

main

copy
123456789
#include <iostream> #include <iomanip> int main() { // Uncomment to see the difference // std::cout << std::fixed; std::cout << std::setprecision(5) << 15.125 * 0.8309 << std::endl; }

In the example above, floating-point results may occasionally be produced during calculations. To manage the precision of these results, you can use std::setprecision in combination with std::fixed. This allows you to control the number of digits displayed after the decimal point, ensuring consistent precision in your output.

Note

Without std::fixed, std::setprecision controls the total number of digits displayed, including both before and after the decimal points. With std::fixed, the number is displayed in fixed-point notation, keeping the decimal point in a fixed position.

Task
test

Swipe to show code editor

  1. Include <iomanip> to be able to set precision.
  2. Follow the comments to set a precision.
  3. Calculate and output the equivalent of 5 miles in kilometers rounding to one decimal place.

Note

To convert 5 miles to kilometers, you would multiply the number of miles by the conversion factor (1.60934).

Once you've completed this task, click the button below the code to check your solution.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 2
toggle bottom row

bookArithmetic Operations

Setting the precision

As you already should know you can perform basic data manipulation using arithmetic operators such as addition (+), subtraction (-), division (/), and multiplication (*). Additionally, the modulus operator (%) calculates the remainder of a division.

cpp

main

copy
123456789
#include <iostream> #include <iomanip> int main() { // Uncomment to see the difference // std::cout << std::fixed; std::cout << std::setprecision(5) << 15.125 * 0.8309 << std::endl; }

In the example above, floating-point results may occasionally be produced during calculations. To manage the precision of these results, you can use std::setprecision in combination with std::fixed. This allows you to control the number of digits displayed after the decimal point, ensuring consistent precision in your output.

Note

Without std::fixed, std::setprecision controls the total number of digits displayed, including both before and after the decimal points. With std::fixed, the number is displayed in fixed-point notation, keeping the decimal point in a fixed position.

Task
test

Swipe to show code editor

  1. Include <iomanip> to be able to set precision.
  2. Follow the comments to set a precision.
  3. Calculate and output the equivalent of 5 miles in kilometers rounding to one decimal place.

Note

To convert 5 miles to kilometers, you would multiply the number of miles by the conversion factor (1.60934).

Once you've completed this task, click the button below the code to check your solution.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 2
toggle bottom row

bookArithmetic Operations

Setting the precision

As you already should know you can perform basic data manipulation using arithmetic operators such as addition (+), subtraction (-), division (/), and multiplication (*). Additionally, the modulus operator (%) calculates the remainder of a division.

cpp

main

copy
123456789
#include <iostream> #include <iomanip> int main() { // Uncomment to see the difference // std::cout << std::fixed; std::cout << std::setprecision(5) << 15.125 * 0.8309 << std::endl; }

In the example above, floating-point results may occasionally be produced during calculations. To manage the precision of these results, you can use std::setprecision in combination with std::fixed. This allows you to control the number of digits displayed after the decimal point, ensuring consistent precision in your output.

Note

Without std::fixed, std::setprecision controls the total number of digits displayed, including both before and after the decimal points. With std::fixed, the number is displayed in fixed-point notation, keeping the decimal point in a fixed position.

Task
test

Swipe to show code editor

  1. Include <iomanip> to be able to set precision.
  2. Follow the comments to set a precision.
  3. Calculate and output the equivalent of 5 miles in kilometers rounding to one decimal place.

Note

To convert 5 miles to kilometers, you would multiply the number of miles by the conversion factor (1.60934).

Once you've completed this task, click the button below the code to check your solution.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Setting the precision

As you already should know you can perform basic data manipulation using arithmetic operators such as addition (+), subtraction (-), division (/), and multiplication (*). Additionally, the modulus operator (%) calculates the remainder of a division.

cpp

main

copy
123456789
#include <iostream> #include <iomanip> int main() { // Uncomment to see the difference // std::cout << std::fixed; std::cout << std::setprecision(5) << 15.125 * 0.8309 << std::endl; }

In the example above, floating-point results may occasionally be produced during calculations. To manage the precision of these results, you can use std::setprecision in combination with std::fixed. This allows you to control the number of digits displayed after the decimal point, ensuring consistent precision in your output.

Note

Without std::fixed, std::setprecision controls the total number of digits displayed, including both before and after the decimal points. With std::fixed, the number is displayed in fixed-point notation, keeping the decimal point in a fixed position.

Task
test

Swipe to show code editor

  1. Include <iomanip> to be able to set precision.
  2. Follow the comments to set a precision.
  3. Calculate and output the equivalent of 5 miles in kilometers rounding to one decimal place.

Note

To convert 5 miles to kilometers, you would multiply the number of miles by the conversion factor (1.60934).

Once you've completed this task, click the button below the code to check your solution.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Section 1. Chapter 2
Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
We're sorry to hear that something went wrong. What happened?
some-alt