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
s = input()
ct = 0
for i in s:
if int(i) % 2 != 0:
ct += 1
print(ct)
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++
bai nay khó
This comment is hidden due to too much negative feedback. Click here to view it.
tưởng ko dễ ai ngờ dễ ko tưởng
This comment is hidden due to too much negative feedback. Click here to view it.