Tugas 2.1

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> #include <iomanip> using namespace std; int main() { //Nama :Alip Rizki Firnansah //Nim :3420230040 double hargaSatuan = 15250.75; int jumlahBeli = 10; double subtotal = hargaSatuan * jumlahBeli; double diskon = subtotal * 0.10; double total = subtotal - diskon; cout << "...................................... " <<endl; cout << "Program Penjualan Marshmallow Plain" << endl; cout << "...................................... " <<endl; cout << "Harga Satuan\t: Rp " << fixed << setprecision(2) << hargaSatuan << endl; cout << "Jumlah Beli\t: " << jumlahBeli << endl; cout << "...................................... " <<endl; cout << "Subtotal\t: Rp " << fixed << setprecision(2) << subtotal << endl; cout << "Diskon 10 Persen: Rp " << fixed << setprecision(2) << diskon << endl; cout << "Total\t\t: Rp " << fixed << setprecision(2) << total << endl; cout << "...................................... " <<endl; return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines