#include <iostream> using namespace std; bool czyPotyczkowa(int n) { int i, c = n; while (c != 0) { i = c % 10; if (i == 0) return false; if (n % i != 0) return false; c /= 10; } return true; } int main() { int a, b, ile = 0; cin >> a >> b; for (int i = a; b >= i; i++) if (czyPotyczkowa(i)) ile++; cout << ile; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #include <iostream> using namespace std; bool czyPotyczkowa(int n) { int i, c = n; while (c != 0) { i = c % 10; if (i == 0) return false; if (n % i != 0) return false; c /= 10; } return true; } int main() { int a, b, ile = 0; cin >> a >> b; for (int i = a; b >= i; i++) if (czyPotyczkowa(i)) ile++; cout << ile; return 0; } |