Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tugas 2.1

Snippet info

Language

Cpp

Visibility

public

Author

dhafinshabir610

Created

2024-10-19T08:58:18.747632Z

Updated

2024-10-19T09:30:34.613083Z

#include <iostream>
using namespace std;

int main() {
    
    float harga_satuan=10250.75;
    float jumlah_beli=6;
    float subtotal=harga_satuan * jumlah_beli;
    float diskon=subtotal * 0.10;
    float total=subtotal-diskon;
    
    cout<<"---------------------------------------"<<endl;
    printf("Program Penjualan Marshmallow Plain \n");
    cout<<"---------------------------------------"<<endl;
    printf("Harga satuan    : Rp %5.2f \n",harga_satuan);
    printf("Jumlah Beli     : %.f \n",jumlah_beli);
    cout<<"---------------------------------------"<<endl;
    printf("Subtotal        : Rp %.2f \n",subtotal);
    printf("Diskon          : Rp %.2f \n",diskon);
    printf("Total           : Rp %.2f \n",total);
    
    //NAMA : Dhafin Shabir Alfatih
    //NIM  : 3420230036
    
    return 0;
}
INFO