An article of helloacm.com present how to make your code clearly.
Visit this page: https://helloacm.com/avoid-magic-numbers-by-using-enum-in-cc/
An article of helloacm.com present how to make your code clearly.
Visit this page: https://helloacm.com/avoid-magic-numbers-by-using-enum-in-cc/
Đối với những trường hợp chỉ có một biến, không dùng được enum thì ta có thể tạo biến const
const int TOTAL_ELEMENT = 100;
Sau này dùng vòng lặp for
for (int i = 0; i < TOTAL_ELEMENT; ++i)
dễ hiểu hơn
for (int i = 0; i < 100; ++i)