Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Challenge: Division int and double | Introduction
C++ Data Types

bookChallenge: Division int and double

We will not stop on most operations since they work as expected. Instead, let's look at the reasons behind the incorrect result obtained from the division operation. Those are explained in a video below:

It's not just a problem limited to division. When you use operators such as +, -, *, or / on variables of certain types, the resulting value will have the same type as the operands.

It's important to be mindful of these possibilities and take them into account.

Oppgave

Swipe to start coding

Imagine you're building a taxi meter program: the GPS gives a fractional distance (12.7 km), but the meter rounds it down to a whole number. You need to write a function that calculates the customer's fare.

  1. Use the existing function calculatePayment, which has a return type of int and two parameters:
    • double distance_km — traveled distance.
    • int rate_per_km — price per kilometer.
  2. Multiply distance_km by 1 to convert it to an int and assign the result to the variable distance_km_int.
  3. Declare a type for payment_exact that should store an integer value.
  4. Multiply the distance by the rate per kilometer and assign the result to payment_exact.
  5. Return the result.

Løsning

solution.cpp

solution.cpp

Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 1. Kapittel 3
single

single

Spør AI

expand

Spør AI

ChatGPT

Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår

Suggested prompts:

Can you explain how to ensure the result of division is a floating-point number in C++?

What are some common mistakes beginners make with type conversion in C++?

Can you give more examples of type-related issues with arithmetic operations?

close

Awesome!

Completion rate improved to 4.35

bookChallenge: Division int and double

Sveip for å vise menyen

We will not stop on most operations since they work as expected. Instead, let's look at the reasons behind the incorrect result obtained from the division operation. Those are explained in a video below:

It's not just a problem limited to division. When you use operators such as +, -, *, or / on variables of certain types, the resulting value will have the same type as the operands.

It's important to be mindful of these possibilities and take them into account.

Oppgave

Swipe to start coding

Imagine you're building a taxi meter program: the GPS gives a fractional distance (12.7 km), but the meter rounds it down to a whole number. You need to write a function that calculates the customer's fare.

  1. Use the existing function calculatePayment, which has a return type of int and two parameters:
    • double distance_km — traveled distance.
    • int rate_per_km — price per kilometer.
  2. Multiply distance_km by 1 to convert it to an int and assign the result to the variable distance_km_int.
  3. Declare a type for payment_exact that should store an integer value.
  4. Multiply the distance by the rate per kilometer and assign the result to payment_exact.
  5. Return the result.

Løsning

solution.cpp

solution.cpp

Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 1. Kapittel 3
single

single

some-alt