Program C++ Menentukan Wujud Air
Berikut adalah kode nya : #include <iostream> using namespace std; int suhu; int main() { cout<<"==== Menentukan Wujud Air ===="<<endl; cout<<"Suhu : " ; cin>>suhu; if(suhu>100) { cout<<"Wujud air : GAS"<<endl; } else if(suhu<0) { cout<<"Wujud air : BEKU"<<endl; } else { cout<<"Wujud air : CAIR"<<endl; } return 0; }