Quick actions

cmd+k|ctrl+k

Navigation

Languages

algoritma 2.1

Snippet info

Language

Cpp

Visibility

public

Author

yoga-dwi-kurniawan

Created

2024-10-19T08:55:53.851735Z

Updated

2024-10-19T09:14:28.460938Z

#include <iostream>
using namespace std;
//Nama : yoga dwi kurniawan
// nim : 3420230019
//prodi: teknik informatika

int main() {
    
    int jumlah;
    float harga_per_satuan, harga_total;
    
    jumlah = 10; harga_per_satuan = 15.5;
    harga_total = jumlah * harga_per_satuan;
    
   
    
    printf("harga satuan = %.2f dan harga total = %.2f \n ", harga_per_satuan,
    harga_total);
    return 0;
}
INFO