Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int n;
- cin >> n;
- for(int i = 0; i < n; i++) {
- int x;
- cin >> x;
- int dali_e_sostaven_od_parni = 1;
- while(x > 0) {
- int cifra = x % 10;
- if(cifra % 2 == 1) {
- dali_e_sostaven_od_parni = 0;
- }
- x /= 10;
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement