Menu
Coddy logo textTech

Formatierte Ausgabe

Teil des Abschnitts Grundlagen der C++-Journey von Coddy — Lektion 41 von 74.

challenge icon

Aufgabe

Anfänger

Ändere die Ausgabe so, dass sie immer einen Double-Wert mit zwei Dezimalstellen ausgibt. Verwende dazu den <<-Operator mit std::fixed und std::setprecision(2):

#include <iomanip>

std::cout << std::fixed << std::setprecision(2) << num;

Du musst <iomanip> einbinden.

Probier es selbst

#include <iostream>

int main() {
    std::cout << "Calculator App" << std::endl;

    double num1;
    std::cin >> num1;
    double num2;
    std::cin >> num2;

    // Perform arithmetic operations
    double sum = num1 + num2;
    double difference = num1 - num2;
    double product = num1 * num2;
    double division = num1 / num2;

    // Print the results
    std::cout << "Sum: " << sum << std::endl;
    std::cout << "Difference: " << difference << std::endl;
    std::cout << "Product: " << product << std::endl;
    std::cout << "Division: " << division << std::endl;

    return 0;
}

Alle Lektionen in Grundlagen