[C++] Hãy đếm số lượng chữ số lẻ 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ố lẻ của số nguyên dương n// VD // 123 ==> 1 3 ==> kq = 2 // 54567840 ==> 5 5 7 ==> kq = 3int Dem_SoLe(int N){ int dem = 0; while (N > 0) { int t = N % 10; if (t % 2 != 0) dem++; N = N / 10; } return dem;}int main(){ int N; cout << "N = "; cin >> N; int result = Dem_SoLe(N); cout << "So luong chu so Le " << result << endl; system("pause");}