Algoritmanya
:
1.
Mulai.
2. Integer p,l,t dan float v,luas.
3.
Memasukkan nilai p,l,t.
4.
Menghitung volume bola V=p*l*t dan
luas permukaan bola L=(2*p*l)+(2*p*t)+(2*l*t).
5.
Output kan
##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) {
float phi=3.14;
float r,vol,luas;
cout<<"masukan jari-jari :";cin>>r;
luas=((4*phi)*r*r);
vol=(1.3*phi*r*r*r);
cout<<"luas permukaan bola : "<<luas<<endl;
cout<<"volume bola : "<<vol<<endl;
return 0;
}
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) {
float phi=3.14;
float r,vol,luas;
cout<<"masukan jari-jari :";cin>>r;
luas=((4*phi)*r*r);
vol=(1.3*phi*r*r*r);
cout<<"luas permukaan bola : "<<luas<<endl;
cout<<"volume bola : "<<vol<<endl;
return 0;
}
Tidak ada komentar:
Posting Komentar