PERCABANGAN KONVERSI SUHU LENGKAP
#include <iostream>
using namespace std;
int main (int argc, char *argv[])
{
char pilih ;
int R,C,F;
cout<<"SELAMAT DATANG DI KOVERENSI SUHU\n"<<endl;
cout<<"Nama\t: Ahmad Riyatno"<<endl;
cout<<"Nim\t: 1700022003"<<endl;
cout<<"Prodi\t: Teknik Elektro"<<endl;
cout<<"============Selamat Datang=========="<<endl;
cout<<"Pilih Menu : "<<endl;
cout<<"______________PILIHAN______________"<<endl;
cout<<"| A. Celcius -> Fahrenheit |"<<endl;
cout<<"| B. Fahrenheit -> Celcius |"<<endl;
cout<<"| C. Celcius -> Reamur |"<<endl;
cout<<"| D. Reamur -> Celcius |"<<endl;
cout<<"| E. Fahrenheit -> Reamur |"<<endl;
cout<<"| F. Reamur -> Fahrenheit |"<<endl;
cout<<"|_________________________________|"<<endl;
switch(pilih)
{
case 'A' :
cout<<"masukan pilihan mu = "; cin>>pilih;
cout<<"Masukkan nilai :"; cin>>C ;
F= (C*1,8)+32 ;
cout<<"Celcius --> Fahrenheit\t= "<<F<<endl; break;
case 'B' :
cout<<"Masukkan nilai :";cin>>F ;
C= (F-32)*5,6;
cout<<"Fahrenheit --> Celcius\t= "<<C<<endl; break;
case 'C' :
cout<<"Masukkan nilai :";cin>>C ;
R = C*0,8;
cout<<"Celcius --> Reamur\t= "<<R<<endl; break;
case 'D' :
cout<<"Masukkan nilai :";cin>>R;
C = R*1,25;
cout<<"Reamur --> Celcius \t= "<<C<<endl; break;
case 'E' :
cout<<"Masukkan nilai :";cin>>F ;
R =(F-32)*0,4;
cout<<"Fahrenheit --> Reamur \t= "<<R<<endl; break;
case 'F' :
cout<<"Masukkan nilai :";cin>>R ;
F =(R*2,25)+32;
cout<<"Reamur --> Fahrenheit\t= "<<F<<endl;
cout<<"================================="<<endl; break;
;
}
cout<<"Terimakasih"<<endl;
return 0;
}
Ahmad Riyatno
Jumat, 29 Desember 2017
SIMULASI BOM SEDERHANA
DEV C++
#include <conio.h>
#include <windows.h>
#include <cstdlib>
#include <iostream>
#include<time.h>
using namespace std;
void wait ( double seconds )
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
}
main()
{
char hrf;
int i;
system("color 09");
cout<<""<<endl; cout<<""<<endl;
cout<<"\t \t \t Asalammua'laikum Wr.Wb'"<<endl;
getch();
system("cls");
system("color 17");
cout<<"\t \t \t jawab pertanyaan ini dengan baik dan benar!!"<<endl;
getch();
system("cls");
system("color 0e");
cout<<"Apa nama kerja paksa pada jaman penjajahan jepang="<<endl;
cout<<"a. kerja rodi" <<endl
<<"b. kerja romusha"<<endl;
cout<<"tuliskan jawaban (a/b)"<<endl;
cin>>hrf;
system("cls");
if (hrf=='b')
{
system("color 0E");
cout <<""<<endl; cout <<""<<endl
<<"\t \t \t \t \t ___________________________"<<endl
<<"\t \t \t \t \t | jawaban anda benar |"<<endl
<<"\t \t \t \t \t | anda selamat dari bom! |"<<endl
<<"\t \t \t \t \t ***************************"<<endl;
}
else{
for( i=5;i>=0;i--){
system("cls");
system("color 0c");
cout<<"\t \t \t ---------jawaban anda salah-----------"<<endl;
cout<<"\t \t \t ----BOM AKAN MELEDAK DALAM WAKTU:-----"<<endl;
cout<<"\n\t\t\t\t\t \t "<<i;wait(1);
}
for(i=1;i<6;i+2){
cout<<"BOOOOOOMMMMMMMMMMMMMMMMMMMMMMMMMMMMM HANCUR SEMUANYA ";
}
}
getch();
}
DEV C++
#include <conio.h>
#include <windows.h>
#include <cstdlib>
#include <iostream>
#include<time.h>
using namespace std;
void wait ( double seconds )
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
}
main()
{
char hrf;
int i;
system("color 09");
cout<<""<<endl; cout<<""<<endl;
cout<<"\t \t \t Asalammua'laikum Wr.Wb'"<<endl;
getch();
system("cls");
system("color 17");
cout<<"\t \t \t jawab pertanyaan ini dengan baik dan benar!!"<<endl;
getch();
system("cls");
system("color 0e");
cout<<"Apa nama kerja paksa pada jaman penjajahan jepang="<<endl;
cout<<"a. kerja rodi" <<endl
<<"b. kerja romusha"<<endl;
cout<<"tuliskan jawaban (a/b)"<<endl;
cin>>hrf;
system("cls");
if (hrf=='b')
{
system("color 0E");
cout <<""<<endl; cout <<""<<endl
<<"\t \t \t \t \t ___________________________"<<endl
<<"\t \t \t \t \t | jawaban anda benar |"<<endl
<<"\t \t \t \t \t | anda selamat dari bom! |"<<endl
<<"\t \t \t \t \t ***************************"<<endl;
}
else{
for( i=5;i>=0;i--){
system("cls");
system("color 0c");
cout<<"\t \t \t ---------jawaban anda salah-----------"<<endl;
cout<<"\t \t \t ----BOM AKAN MELEDAK DALAM WAKTU:-----"<<endl;
cout<<"\n\t\t\t\t\t \t "<<i;wait(1);
}
for(i=1;i<6;i+2){
cout<<"BOOOOOOMMMMMMMMMMMMMMMMMMMMMMMMMMMMM HANCUR SEMUANYA ";
}
}
getch();
}
Langganan:
Postingan (Atom)
PERCABANGAN KONVERSI SUHU LENGKAP #include <iostream> using namespace std; int main (int ...
-
Tak jauh dari kota Yogyakarta ini terdapat tempat wisata yang sedang populer di tahun 2017 ini baik kalangan dewasa ,pelajar,Mahasiswa ram...
-
SIMULASI BOM SEDERHANA ...
-
PERCABANGAN KONVERSI SUHU LENGKAP #include <iostream> using namespace std; int main (int ...