C++でディスカウント(〇〇割引き)を計算するコードをつくってみた

code-2620118_640

宿題で作ってみました。ちょっとてこずったところは、最初の変数の定義のところと、$の置く位置です。ずっと200$だと思っていたんですが、$200が正解です。

// This program calculates the sale price of an item
// that is regularly priced at $59.95, with a 20 percent
// discount subtracted.(セール品の計算)
#include <iostream>
using namespace std;

int main()
{
    // Variables to hold the regular price, the
    // amount of a discount, and the sale price.(変数の定義)
    double regularPrice = 59.95, discount, salePrice;
           
    // Calculate the amount of a 20% discount.(20%ディスカウントの計算式)
    discount = regularPrice * 0.20;

    // Calculate the sale price by subtracting the
    // discount from the regular price.(ディスカウントの計算式)
    salePrice = regularPrice – discount;

    // Display the results.(出力)
    cout << “Regular price: $” << regularPrice << endl;
    cout << “Discount amount: $” << discount << endl;
    cout << “Sale price: $” << salePrice << endl;
    return 0;
}

出力は以下の通りです。

Regular price: $59.95
Discount amount: $11.99
Sale price: $47.96



ご面倒おかけしますが、たまにはクリックお願いします!

にほんブログ村 海外生活ブログ 海外移住へ
にほんブログ村

にほんブログ村 海外生活ブログへ
にほんブログ村