You are on page 1of 1

#include <iostream.h> #include <conio.h> void main() { float j,t,v,l; const phi=3.

14; // cout<<" MENGHITUNG VOLUME DAN LUAS TABUNG \n \n"; // cout<<"Masukkan Tinggi Tabung : ";cin>>t; // cout<<"Masukkan jari-jari Tabung : ";cin>>j; t=24; j=7; v=phi*j*j*t; l=2*phi*j*t; cout<<endl; cout<<"Volume Tabung Adalah : "<<v<<"\n"; cout<<"Keliling Tabung Adalah : "<<l; getch(); }

You might also like