Đếm chữ số lẻ (THT TP 2019)

View as PDF



Author:
Problem types
Points: 100 (p) Time limit: 1.0s Memory limit: 256M Input: stdin Output: stdout

Nhập vào từ bàn phím một xâu kí tự \(S\) (có không quá \(255\) kí tự) chỉ chứa các kí tự chữ số từ \(0\) đến \(9\). Hãy đếm trong xâu \(S\) có bao nhiêu kí tự chữ số lẻ và in kết quả ra màn hình

Input

  • Một xâu kí tự \(S\)

Output

  • Kết quả của bài toán

Example

Test 1

Input
2019 
Output
2

Comments


  • 0
    giathinhd061    10:19 a.m. 17 jul, 2024

    s = input()
    ct = 0
    for i in s:
    if int(i) % 2 != 0:
    ct += 1
    print(ct)


    • 0
      Avocadorable    8:10 p.m. 21 may, 2024
      s = input()
      ct = 0
      for i in s:
          if int(i) % 2 != 0:
              ct += 1
      print(ct)
      

      • 5
        hjhjhjhjhj    9:16 a.m. 6 apr, 2024

        include <bits/stdc++.h>

        using namespace std;
        int main(){
        string s; cin >> s;
        int d = 0;
        for (char&i:s) if ((i-'0')%2!=0) d ++ ;
        cout << d ;
        return 0;
        }
        c++


        • -3
          NguyenHuy2501    6:16 p.m. 4 jan, 2024 edited

          bai nay khó


          • -12
            no2k8    10:40 a.m. 16 oct, 2022

            This comment is hidden due to too much negative feedback. Click here to view it.


            • -1
              iqtop09    3:35 p.m. 7 jul, 2022

              tưởng ko dễ ai ngờ dễ ko tưởng


              • -12
                minhtuanitk20    10:01 p.m. 27 sep, 2021

                This comment is hidden due to too much negative feedback. Click here to view it.