fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x, y; // границы поиска
  6. cin >> x >> y;
  7. for (int i = x; i < y + 1; i++){
  8. int a = i / 1000; // цифры
  9. int b = (i / 100) % 10;
  10. int c = (i / 10) % 10;
  11. int d = i % 10;
  12. if ( (a != b) && (a != c) // проверка разности
  13. && (a != d) && (b != c)
  14. && (b != d) && (c != d) )
  15. cout << i << ' ';
  16. }
  17. return 0;
  18. }
Success #stdin #stdout 0s 15232KB
stdin
2000 2015
stdout
2013 2014 2015