Algoritma
menghitung isi atau volume bola.
{membaca data real berupa jari-jari bola
(r), dan menghitung isi atau volumenya dengan jari-jari tertentu. Volume bola
dihiutng dengan rumus V=4πr3. Nilai V dicetak sebagai output ke peranti
keluaran.}
Deklarasi:
Phi : float {nilai
3,14, satuan cm}
R : float {jari-jari bola, satuan cm}
V : float {volume bola, satuan cm3}
Deskripsi:
Baca
(phi)
Baca
(r)
Vß4*phi*r*r*r
Write (V)
Program c++ :
#include <cstdlib>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
float L,r,phi=3.14,V;
cout<<"Masukkan jari-jari: "; cin>>r;
V=4/3*phi*r*r*r;
cout<<"Volume Bola= "<<V;
return 0;
}
Tidak ada komentar:
Posting Komentar