Quick actions

cmd+k|ctrl+k

Navigation

Languages

tugas 2.1

Snippet info

Language

Cpp

Visibility

public

Author

yoga-dwi-kurniawan

Created

2024-10-19T09:05:20.343336Z

Updated

2024-11-02T07:45:42.107496Z

#include <iostream>
#include <iomanip>
// nama : yoga dwi kurniawan 
// nim  : 3420230019
using namespace std;

int main() {
    // Deklarasi variabel
    double harga_satuan = 10250.75;
    int jumlah_beli = 6;
    double subtotal = harga_satuan * jumlah_beli;
    double diskon = 0.10 * subtotal;
    double total = subtotal - diskon;

    // Menampilkan hasil
    cout << "Program Penjualan Marshmallow Plain" << endl;
    cout << "-----------------------------------" << endl;
    cout << "Harga Satuan : Rp " << fixed << setprecision(2) << harga_satuan << endl;
    cout << "Jumlah Beli  : " << jumlah_beli << endl;
    cout << "-----------------------------------" << endl;
    cout << "Subtotal     : Rp " << fixed << setprecision(2) << subtotal << endl;
    cout << "Diskon 10%   : Rp " << fixed << setprecision(2) << diskon << endl;
    cout << "Total        : Rp " << fixed << setprecision(2) << total << endl;

    return 0;
}
INFO