Translate

Friday, December 18, 2015

menghitung suhu dari celcius ke farenhit,reamur dan kelvin meggunakan pemrograman c++

#include<iostream.h> #include<conio.h> void main() { int cel, fah, rea, kel; cout << "=============================" << endl; cout << "KONVERSI SUHU DARI CELCIUS KE" << endl; cout << " Fahrenheit: Reamur: Kelvin" << endl; cout << "=============================" << endl; cout<< "Masukkan suhu dalam Celcius : "; cin>>cel; cout << "=============================" << endl; cout << "HASIL KONVERSI SUHU" << endl; cout << "============================="...