Menghitung harga buah
sama seperti artikel sebelumnya ,kali ini saya akan membuat program menghitung harga buah perkilo
yuk langsung saja kita buat :
langkah-langkahnya :
1. buka aplikasi borland ,klik file,new,text edit
2.Ketik perintah seperti gambar di bawah ini
Source code :
#include <iostream>
#include <conio.h>
#include <iomanip>
#include <string.h>
int main(){
float harga = 4500,kilo,total;
char konfir;
awal:
clrscr();
cout<<"================================================================"<<endl;
cout<<" PROGRAM MENGHITUNG HARGA BUAH BUAHAN"<<endl;
cout<<" HARGA = "<<harga; cout << endl;
cout<<" KG = ";cin>>setprecision(2)>>kilo; cout << endl;
cout<<"----------------------------------------------------------------"<<endl;
total=harga*kilo;
cout<<" JUMLAH = "<<total<<endl;
cout<<"================================================================"<<endl;
cout<<endl;
cout<<"INGIN INPUT LAGI [Y/T]:";
cin>>konfir;
if(konfir=='Y'||konfir=='y'){
goto awal;
}
else
{
return 0;
}
getch();
}
3.Lalu running perintah yang sudah kita buat dan akan muncul seperti gambar di bawah ini
Selesai.
yuk langsung saja kita buat :
langkah-langkahnya :
1. buka aplikasi borland ,klik file,new,text edit
2.Ketik perintah seperti gambar di bawah ini
Source code :
#include <iostream>
#include <conio.h>
#include <iomanip>
#include <string.h>
int main(){
float harga = 4500,kilo,total;
char konfir;
awal:
clrscr();
cout<<"================================================================"<<endl;
cout<<" PROGRAM MENGHITUNG HARGA BUAH BUAHAN"<<endl;
cout<<" HARGA = "<<harga; cout << endl;
cout<<" KG = ";cin>>setprecision(2)>>kilo; cout << endl;
cout<<"----------------------------------------------------------------"<<endl;
total=harga*kilo;
cout<<" JUMLAH = "<<total<<endl;
cout<<"================================================================"<<endl;
cout<<endl;
cout<<"INGIN INPUT LAGI [Y/T]:";
cin>>konfir;
if(konfir=='Y'||konfir=='y'){
goto awal;
}
else
{
return 0;
}
getch();
}
3.Lalu running perintah yang sudah kita buat dan akan muncul seperti gambar di bawah ini
Komentar
Posting Komentar