Buat Teman kampus silahkan belajar tuh... C++..... hehehe... shere.....
Berikut Program C++ untuk mencari volume balok .
#include<stdio.h>
#include<conio.h>
#include<iostream.h>
void main ()
{
float p,l,t;
float Volume;
cout<<"Program Volum Balok"<<endl<<endl;
cout<<"Masukkan Panjang Balok: ";cin>>p;
cout<<"Masukkan Lebar Balok: ";cin>>l;
cout<<"Masukkan Tinggi Balok: ";cin>>t;
Volume = p*l*t;
cout<<"Volume Balok = "<<Volume<<endl;
getch();
}
coba aja yach,,,, moga bermanfaat...
Title : Program C++ Volume Balok
Description : Buat Teman kampus silahkan belajar tuh... C++..... hehehe... shere..... Berikut Program C++ untuk mencari volume balok . #include<st...