Quick actions

cmd+k|ctrl+k

Navigation

Languages

Algortima 2.1

Snippet info

Language

Cpp

Visibility

public

Author

ramdika33

Created

2024-10-19T09:34:38.093806Z

Updated

2024-10-19T09:34:38.093806Z

#include <iostream>
using namespace std;

int main() {
    int jumlah=10;
    float hargasatuan=15.5;
    float hargatotal=jumlah * hargasatuan;
    
    printf("Harga Satuan = %.2f  Harga Total = %.2f \n", hargasatuan, hargatotal);
    
    
    return 0;
}
INFO