Posts

ភាសាកម្មវិធី C++៖ ថេរ

Image
ថេរ  Constants          នៅពេលដែលអ្នកមិនចង់អោយអ្នកដទៃ (ឬខ្លួនអ្នកផ្ទាល់) បដិសេធ (override) តម្លៃអថេរដែលមានស្រាប់សូមប្រើពាក្យគន្លឹះ const [នេះនឹងប្រកាសអថេរជា "ថេរ" ដែលមានន័យថាមិនអាចផ្លាស់ប្តូរបាននិងអាចអានបាន(unchangeable and read-only)]៖ ឧទាហរណ៍៖        ជានិច្ចកាលអ្នកគួរតែប្រកាសអថេរ (variable) ជាថេរ (constant)នៅពេលអ្នកមាន តម្លៃណាមួយដែលមិនទំនងជាផ្លាស់ប្តូរ៖ ឧទាហរណ៍៖  

ភាសាកម្មវិធី C++៖ អត្តសញ្ញាណសំគាល់

អត្តសញ្ញាណសំគាល់ Identifiers               អថេរភាសាកម្មវិធី C ++ ទាំងអស់ត្រូវតែមានឈ្មោះសំគាល់តែមួយគត់(unique names) ។ ឈ្មោះតែមួយគត់ទាំងនេះហៅថាអត្តសញ្ញាណសំគាល់ (identifiers)។ Identifiers អាចជាឈ្មោះខ្លីៗ ដូជា x និង y ឬអាចវែងជាងនេះ ដូចជា age ឬ sum ឬ total_tolume ជាដើម ។ ចំណាំ៖ ណែនាំឱ្យប្រើដែលមានការឈោ្មះពណ៌នា (descriptive names) ដើម្បីបង្កើតកូដដែលងាយលយ់បាន និងអាចថែរក្សាបាន (maintainable) ។ ឧទាហរណ៍៖ // Good int minutesPerHour = 60; // OK, but not so easy to understand what m actually is int m = 60;

ភាសាកម្មវិធី C++៖ ការប្រកាសអថេរច្រើន

ការប្រកាសអថេរច្រើន Declaring Multiple Variables        ដើម្បីក្រកាសអថេរច្រើនជាងមួយក្នុងប្រភេទដូចគ្នា យើងត្រូវប្រើសញ្ញាក្បៀសដើម្បីញែកពីអថេរទៅអថេរ ។ ឧទាហរណ៍៖ // Declare Multiple Variables int x = 5, y = 6, z = 50; cout << x + y + z; ឧទាហរណ៍៖ // Declare Multiple Variables int x,y,z; x = 5; y = 6; z = 50; cout << x + y + z;

ភាសាកម្មវិធី C++៖ ការប្រកាសអថេរ

Image
ការប្រកាសអថេរ Declaration of variable   datatype variable_name;   ឧទាហរណ៍៖   ឧទាហរណ៍៖       លទ្ធផលគឺ៩

C++ Comments

Image
C++ Comments Every comment-program is the explanatory statement that we also include in the C++ code. The comment statements can help anyone to understand each processing step by step by reading from the source code. All programming languages always allow for some forms of comments, but in different forms of each programming language. The C++ comments support single-line and multiple-line. All characters must be available inside any comment and always ignored by the compiler of C++. Normally, C++ comments start with /* and end with */. For example: /*This is my comment in single-line*/ /*This my comment in multiple-line *C++ can also support for multiple-line */ We can also extending the comment at the of each line with //. For example: #include<iostream> using namespace std; main(){  cout<<"Hello World!"; //Prints Hello World! return 0; } When compiling the source code above, the compiler will ignore / /Prints Hello World!, So the fin

Data type

ប្រភេទទិន្នន័យ Data type

ភាសាកម្មវិធី C++៖ ការអត្ថាធិប្បាយ

Image
  ការអត្ថាធិប្បាយ Comments ការប្រើប្រាស់ Comments ក្នុងភាសាកម្មវិធី C++ (Using comments in C++)     Comment មានសារៈសំខាន់ណាស់សម្រាប់អ្នកសរសេរកម្មវិធី ។វាធ្វើអោយយើងងាយស្រួលយល់ពីកូដដែលបានសរសេរពីមុនៗមក រាល់ពេលបើកមើលលើកក្រោយទៀត ។ គេប្រើការអធិប្បាយ (Comments) សម្រាប់កត់ចំណាំ ឬពណ៌នាអំពីកូដ ។ ជាទូទៅការអធិប្បាយ (Comments) មានទម្រង់ដូចខាងក្រោម៖  ការអធិប្បាយមួយជួរ (Single-line comments)      ការអធិប្បាយមួយជួរ (Single-line comments) ផ្ដើមដោយសញ្ញា forward slashes (//) ។ អត្ថបទណាមួយដែលស្ថិតនៅរវាង // និងចុងបញ្ចប់នៃជួរបន្ទាត់ នឹងមិនត្រូវបានប្រតិបត្តិទេ (will not be executed) ។ // This is my comment in single-line ឧទាហរណ៍៖  ការអធិប្បាយច្រើនជួរ (Multiple-line comments)      ការអធិប្បាយច្រើនជួរ (Multiple-line comments) ផ្ដើមដោយ /* និង បញ្ចប់ដោយ */ ។ អត្ថបទណាមួយដែលស្ថិតនៅរវាង /* និង */ នឹងមិនត្រូវបានប្រតិបត្តិទេ (will not be executed) ។ /*This my comment in multiple-line *C++ can also support for multiple-line */ ឧទាហរណ៍៖