[C++] Hãy đếm số lượng chữ số của số nguyên dương n Ngôn ngữ lập trình: C++ Phần mềm: Visual Studio CODE: Select All #include <iostream>using namespace std;// Hãy đếm số lượng chữ số của số nguyên dương n// vd// 123 : ==>3// 12345 ==> 5// 8888 ==> 8int DemChuSo(int N){ int dem = 0; while (N > 0) { int t = N % 10; dem++; N = N / 10; } return dem;}int main(){ int N; cout << "N = "; cin >> N; int result = DemChuSo(N); cout << "dem chu so la " << result << endl; system("pause");}