Minggu, 25 November 2012

MENGGUNAKAN PROCEDURE SEKALIGUS FUNGSI DALAM C++


//program hitung harga barang
#include <conio.h>
#include <iostream.h>
void penjualan (float a, float b, float c) {
float total, temp ;
temp = b * c ;
total = temp - (a * temp) ;
cout << "Harga Kotor Barang  : " << temp << endl ;
cout << "Harga Bersih Barang : " << total << endl ;
}
//program utama
void main() {
float diskon, harga, jumlah ;
float total, temp ;
cout << "PROGRAM HITUNG HARGA BARANG" << endl ;
cout << "===========================" << endl << endl ;
cout << "harga barang yang debeli: " ; cin >> harga ;
cout << "jumlah barang yang dibeli: " ; cin >> jumlah ;
cout << "diskon barang yang dibeli: " ; cin >> diskon ;
cout << "\n" ;
penjualan(diskon, harga, jumlah) ;
getch();
}

maka jika di compile akan menjadi seperti ini:

Tidak ada komentar:

Posting Komentar