Advertisement
Spocoman

Barcode Generator

Sep 15th, 2023
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.26 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int startNum, finalNum;
  7.     cin >> startNum >> finalNum;
  8.  
  9.     for (int a = startNum / 1000; a <= finalNum / 1000; a++) {
  10.         for (int b = startNum / 100 % 10; b <= finalNum / 100 % 10; b++) {
  11.             for (int c = startNum / 10 % 10; c <= finalNum / 10 % 10; c++) {
  12.                 for (int d = startNum % 10; d <= finalNum % 10; d++) {
  13.                     if (a % 2 == 1 && b % 2 == 1 && c % 2 == 1 && d % 2 == 1) {
  14.                         cout << a << b << c << d << " ";
  15.                     }
  16.                 }
  17.             }
  18.         }
  19.     }
  20.     return 0;
  21. }
  22.  
  23. ИЛИ:
  24.  
  25. #include <iostream>
  26.  
  27. using namespace std;
  28.  
  29. int main() {
  30.     string startNum, finalNum;
  31.     cin >> startNum >> finalNum;
  32.  
  33.     for (int a = startNum[0]; a <= finalNum[0]; a++) {
  34.         for (int b = startNum[1]; b <= finalNum[1]; b++) {
  35.             for (int c = startNum[2]; c <= finalNum[2]; c++) {
  36.                 for (int d = startNum[3]; d <= finalNum[3]; d++) {
  37.                     if (a % 2 == 1 && b % 2 == 1 && c % 2 == 1 && d % 2 == 1) {
  38.                         cout << char(a) << char(b) << char(c) << char(d) << " ";
  39.                     }
  40.                 }
  41.             }
  42.         }
  43.     }
  44.     return 0;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement