#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 r1,r2,r3,rs,rp;
//float rp;
cout<<"Masukan R1 : ";cin>>r1;
cout<<"Masukan r2 : ";cin>>r2;
cout<<"Masukan r3 : ";cin>>r3;
rs=r1+r2+r3;
rp=1/((1/r1)+(1/r2)+(1/r3));
cout<<"Rangkaian Seri: "<<rs<<endl;
cout<<"Rangkaian Paralel: "<<rp<<endl;
return 0;}
2. Menghitung Konversi Suhu
#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 cel,rea,fah,kel;
cout<<"KONVERSI SUHU\n";
cout<<"Masukan suhu Celcius: "; cin>>cel;
fah=(9/5)*cel+32;
cout<<"Fahrenheit: "<< fah <<" fahrenheit"<<endl;
rea=cel*4/5;
cout<<"Reamur: "<<rea<<" reamur"<<endl;
kel=cel+273,15;
cout<<"Kelvin: "<<kel<<" kelvin"<<endl;
return 0;}
3. Menampilkan Dalam Bentuk Jam Menit Detik.
#include <iostream>
using namespace std;
int main(){
int s,jam,menit,detik,sisa;{
cout<<"Konversi Detik ke jam, menit, Detik";cout<<endl;
cout<<"Masukan Detik: "; cin>>s;
jam=s/3600;
sisa=s%3600;
menit=sisa/60;
detik=sisa%60;
cout<<jam<<" jam "<<menit<<" menit "<<detik<<" detik"<<endl;
}
return 0;}
4.Menampilkan Operasi
#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 pecahan1,pecahan2,penjumlahan,pengurangan,pembagian,perkalian;
cout<<"Masukan pecahan pertama: ";cin>>pecahan1;
cout<<"Masukan pecahan kedua: ";cin>>pecahan2;
penjumlahan=pecahan1+pecahan2;pengurangan=pecahan1-pecahan2;
pembagian=pecahan1/pecahan2; perkalian=pecahan1*pecahan2;
cout<<"Hasil penjumlahan 2 bilangan Pecahan: "<<penjumlahan<<endl;
cout<<"Hasil pengurangan 2 bilangan Pecahan: "<<pengurangan<<endl;
cout<<"Hasil pembagian 2 bilangan Pecahan: "<<pembagian<<endl;
cout<<"Hasil perkalian 2 bilangan Pecahan: "<<perkalian<<endl;
return 0;}
5. Menampilkan Dan Menentukan Dua Titik
#include <iostream>
/* 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 x1,y1,x2,y2,ttengahx,ttengahy;
cout<<"Menghitung titik tengah 2 garis (x,y)"<<endl;
cout<<"x1 = "; cin>>x1;
cout<<"y1 = "; cin>>y1;
cout<<"x2 = "; cin>>x2;
cout<<"y2 = "; cin>>y2;
ttengahx=(x1+x2)/2;
ttengahy=(y1+y2)/2;
cout<<"titik tengah 2 garis = "<<"("<<ttengahx<<"), ("<<ttengahy<<")";
return 0;}
6. Menghitung volume dan Luas permukaan bola
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