programming ဘာသာရုပ္ဆုိင္ရာ languageေတြကို မတတ္ရင္ေတာင္မွ
နားလည္ေနသင့္တဃ္။
programming ရ့ဲအေျခခံ လုိေျပာလုိ့ရတဲ့ c++
#include <iostream.h>
void main( )
{
float temp;
cout<<"enter temperature";
cin>>temp;
if (temp<o)cout<<"ICE";
if(0<temp<100)cout<<"WATER";
if(temp>100)cout<<"STEAM";
}
ရွင္းလင္းခ်က္
အေပၚဆုံးကအေၾကာင္းကေတာ့ c++ တုိင္းမွာပါေလ့ရွိတဃ္။
float temp; ဒါကေတြကတတြဲလုံးပါ temp ပါရင္ float ပါမဃ္။ temp ရဲ့ အဓိပြာဃ္က
temperatureပါ။
cout<<"enter temperature";
ထြက္လာတဲ့temperature ကို
cin>>temp;
temp ဆိုတဲ့အခန္းထဲကုိထည့္မဃ္။
if (temp<o)cout<<"ICE";
အကဃ္လုိ့ tempက " 0" ထက္ငဃ္လွ်င္အေျဖကုိ ICE အျဖစ္ထြက္ပါ
if(0<temp<100)cout<<"WATER";
အကဃ္လုိ့ tempက " 0" နွင့္ "100"ၾကားထဲမွာဆုိရင္အေျဖကုိ WATERအျဖစ္ထြက္ပါ
if(temp>100)cout<<"STEAM";
အကဃ္လုိ့ tempက " 100" ထက္ၾကီး္လွ်င္အေျဖကုိ STEAMအျဖစ္ထြက္ပါ
http://sanpwintthu9.multiply.com/