Berikut ini adalah contoh program untuk mengetahui suhu menggunakan DEV C++, semoga bermanfaat..
#include <iostream>
#include <conio.h>
#include <stdio.h>
#include <math.h>
/* 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) {
int cel, fah, rea, kel;
start:
cout<<"||========================================||"<<endl;
cout<<"\tKONVERSI SUHU DARI CELCIUS KE"<<endl;
cout<<"\t Fahrenheit: Reamur: Kelvin "<<endl;
cout<<"||========================================||\n"<<endl;
cout<<"Masukkan suhu dalam Celcius :";
cin>>cel;
cout<<"||========================================||"<<endl;
cout<<"\t HASIL KONVERSI SUHU"<<endl;
cout<<"||========================================||\n"<<endl;
cout<<" Fahrenheit : "<< (((9.0/5.0)*cel)+32)<<endl;
cout<<" Reamur : "<< ((4.0/5.0)*cel)<<endl;
cout<<" Kelvin : "<< (cel + 273)<<"\n \n"<<endl;
cout<<" Nama: Rynto Eik Sahgitya"<<endl;
cout<<" NIM : 1500018074 \n"<<endl;
cout<<"_________________Terimakasih_______________"<<endl;
getch();
return 0;
}
Hasil dari program di atas sebagai berikut :
Gambar di atas adalah hasil Compile program sebelum di masukkan angka yang di inginkan, selamat mencoba
0 komentar:
Posting Komentar