1 C++ ကိုစိတ္၀င္စားေသာသူမ်ား 12th November 2009, 4:59 pm
C0D3R
MITR Master
ကၽြန္ေတာ္ေလ႔လာမိသေလာက္ေလးေတြကိုေရးေပးသြားမွာျဖစ္ပါတယ္
C++ ကိုစိတ္၀င္စားေသာသူမ်ားအားလံုးကိုလည္းဖိတ္ေခၚပါတယ္
ဒါက 1.cpp
endl ေနရာမွာေနာက္ထပ္တစ္ေၾကာင္းဆင္းသြားပါလိမ္႔မယ္
ျပီးေတာ႔ return 0 လ႔ိုျပန္မွာပါ
output ကေတာ႔
လ႔ိုအေျဖထြက္မွာပါ
//////////////////////////////////////////////////////////////////////////
ဒါက 2.01
out put ကေတာ႔
//////////////////////////////////////////////////////////////////////////////////////
//ဒါက2.02.cpp
out put ကေတာ႔
///////////////////////////////////////////////////////////////////////////////////
/ EX2.03.cpp
setw(6)သံုးထားတဲ႔အတြက္1234 နဲ႔ 5678 ေရွ႕မွာ နွစ္ေနရာစာခ်န္ခဲ႔ပါတယ္
အကယ္ရွ္ setw(4) ကိုသံုးမယ္ဆိုရင္ဂဏန္းကေလးလံုးပဲ႔ရွိတယ္ဆိုေတာ႔ေနရာလြတ္မက်န္ပါဘူး
ဒီလိုပဲ႔ setw(-)ေနရာမွာ အျခားဂဏန္းေတြထည္႔ျပီးစမ္းၾကည္႔ေပါ႔ေနာ္
////////////////////////////////////////////////////////////////////////////
ဆက္ေရးမယ္လာမယ္ၾကာမယ္ေနာ္
C++ ကိုစိတ္၀င္စားေသာသူမ်ားအားလံုးကိုလည္းဖိတ္ေခၚပါတယ္
ဒါက 1.cpp
Save it 1.cpp// Our first program
#include
using namespace std;
int main()
{
cout << "Some people think programming Windows"
<< endl
<< "is like nailing jello to the ceiling..."
<< endl
<< "easy with the right kind of nails."
<< endl << endl;
return 0;
}
endl ေနရာမွာေနာက္ထပ္တစ္ေၾကာင္းဆင္းသြားပါလိမ္႔မယ္
ျပီးေတာ႔ return 0 လ႔ိုျပန္မွာပါ
output ကေတာ႔
Some people think programming Windows
is like nailing jello to the ceiling...
easy with the right kind of nails.
လ႔ိုအေျဖထြက္မွာပါ
//////////////////////////////////////////////////////////////////////////
ဒါက 2.01
// A Simple Example of a Program
#include
using namespace std;
int main()
{
int apples, oranges; // two integer variables ကိုေၾကျငာျခင္း
int fruit; // ...ဒါကအျခားတစ္ခု ကိုေၾကျငာတာပါ
apples = 5; oranges = 6; // တန္ဖိုးသတ္မွတ္ေပးတာပါ
fruit = apples + oranges; // fruit ရဲ႕စုစုေပါင္းတန္ဖိုးရေအာင္ေပါင္းရမွာပါ
cout << endl; // ေနာက္ထပ္လိုင္းတစ္ေၾကာင္းဆင္းဖို႔ေရးထားတာပါ
cout << "Oranges are not the only fruit... " << endl
<< "- and we have " << fruit << " fruits in all."; // fruit ေနရာမွာ apples + oranges ေပါင္းလဒ္တန္ဖိုးရမွာပါ
cout << endl; // ေနာက္ထပ္လိုင္းတစ္ေၾကာင္းဆင္းဖို႔ေရးထားတာပါ
return 0; // program ကေနထြက္ေၾကာင္းအသိေပးတာပါ
}
out put ကေတာ႔
လို႔ေပၚမွာပါOranges are not the only fruit..
- and we have 11 fruits in all.
//////////////////////////////////////////////////////////////////////////////////////
//ဒါက2.02.cpp
// Exercising output
#include
using namespace std;
int main()
{
int num1 = 1234, num2 = 5678; // num1 နဲ႔ num2 ကိုတန္ဖိုးသတ္မွတ္ေပးထားတာပါ
cout << endl; // လိုင္းတစ္ေၾကာင္းဆင္းဖို႔ေရးထားတာပါ
cout << num1 << num2; //တန္ဖိုးႏွစ္ခုကိုျပမွာပါ 1234 နဲ႔ 5678
cout << endl; // ေနာက္ထပ္လိုင္းတစ္ေၾကာင္းဆင္းဖို႔ေရးထားတာပါ
return 0; // program ကေနထြက္ေၾကာင္းအသိေပးတာပါ
}
out put ကေတာ႔
12345678
///////////////////////////////////////////////////////////////////////////////////
/ EX2.03.cpp
output ကေတာ႔// Exercising output
#include
#include
using namespace std;
int main()
{
int num1 = 1234, num2 = 5678;
cout << endl; // လိုင္းတစ္ေၾကာင္းဆင္းဖို႔ေရးထားတာပါ
cout << setw(6) << num1 << setw(6) << num2; //တန္ဖိုးႏွစ္ခုကိုျပမွာပါ
cout << endl; // လိုင္းတစ္ေၾကာင္းဆင္းဖို႔ေရးထားတာပါ
return 0; // program ကေနထြက္ေၾကာင္းအသိေပးတာပါ
}
1234 5678
setw(6)သံုးထားတဲ႔အတြက္1234 နဲ႔ 5678 ေရွ႕မွာ နွစ္ေနရာစာခ်န္ခဲ႔ပါတယ္
အကယ္ရွ္ setw(4) ကိုသံုးမယ္ဆိုရင္ဂဏန္းကေလးလံုးပဲ႔ရွိတယ္ဆိုေတာ႔ေနရာလြတ္မက်န္ပါဘူး
ဒီလိုပဲ႔ setw(-)ေနရာမွာ အျခားဂဏန္းေတြထည္႔ျပီးစမ္းၾကည္႔ေပါ႔ေနာ္
////////////////////////////////////////////////////////////////////////////
ဆက္ေရးမယ္လာမယ္ၾကာမယ္ေနာ္