#include <iostream> #include <stdio.h> #include <string> using namespace std; int main() { int imin, imax, count = 0, isPotyczkowa; char strNum[255]; scanf("%d %d", &imin, &imax); for (int num = imin; num <= imax; num++) { sprintf(strNum, "%d", num); isPotyczkowa = 1; for (char *i = strNum; *i != '\0'; i++) { char n = *i - '0'; if (n == 0 || num % n != 0) { isPotyczkowa = 0; break; } } if(isPotyczkowa == 1){ count++; } } printf("%d", count); 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 31 32 33 34 35 | #include <iostream> #include <stdio.h> #include <string> using namespace std; int main() { int imin, imax, count = 0, isPotyczkowa; char strNum[255]; scanf("%d %d", &imin, &imax); for (int num = imin; num <= imax; num++) { sprintf(strNum, "%d", num); isPotyczkowa = 1; for (char *i = strNum; *i != '\0'; i++) { char n = *i - '0'; if (n == 0 || num % n != 0) { isPotyczkowa = 0; break; } } if(isPotyczkowa == 1){ count++; } } printf("%d", count); return 0; } |