konfersi suhu C++

#include <cstdlib>
#include <iostream>
using namespace std;
int main()

{
int c,r,f;
cout<<”Minghitung Konversi Suhu “;
cout<<”Masukan Suhu C : “;
cin>>c;
r=c*4/5;
f=9/5*c; f+=32;
cout<<”Suhu C = “<<c<<endl;
cout<<”Suhu R = “<<r<<endl;
cout<<”Suhu F = “<<f<<endl;
system(“PAUSE”);
return EXIT_SUCCESS;
}

Related Posts