PROGRAM SEDERHANA
MENGHITUNG VOLUME BALOK MENGGUNAKAN C++
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
int p,l,t,volume; // membuat tipe data int untuk variabel p,l,t,volume
cout<<"====== MENGHITUNG VOLUME BALOK ======"<<endl;
cout<<endl;
cout<<"masukan panjang : "; cin>>p; //untuk menyimpan input nilai ke variabel p
cout<<"masukan lebar : "; cin>>l; //untuk menyimpan input nilai ke variabel l
cout<<"masukan tinggi : "; cin>>t;
volume=p*l*t; //rumus untuk menghitung volume
cout<<"volume balok :"<<volume; //pemangilan variabel volume untuk menampilkan hasil
return 0;
}
outputnya :
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
int p,l,t,volume; // membuat tipe data int untuk variabel p,l,t,volume
cout<<"====== MENGHITUNG VOLUME BALOK ======"<<endl;
cout<<endl;
cout<<"masukan panjang : "; cin>>p; //untuk menyimpan input nilai ke variabel p
cout<<"masukan lebar : "; cin>>l; //untuk menyimpan input nilai ke variabel l
cout<<"masukan tinggi : "; cin>>t;
volume=p*l*t; //rumus untuk menghitung volume
cout<<"volume balok :"<<volume; //pemangilan variabel volume untuk menampilkan hasil
return 0;
}
outputnya :
Bagikan
PROGRAM SEDERHANA MENGGUNAKAN C++
4/
5
Oleh
Bayu Ambika
Silahkan berkomentar secara bijak dan sesuai dengan topik pembahasan ...
Untuk menyisipkan kode pendek, gunakan <i rel="code"> ... KODE ... </i>
Untuk menyisipkan kode panjang, gunakan <i rel="pre"> ... KODE ... </i>
Untuk menyisipkan gambar, gunakan <i rel="image"> ... URL GAMBAR ... </i>