Josif_tepe

Untitled

Nov 21st, 2025
843
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. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int n;
  7.     cin >> n;
  8.     for (int i = 9999; i >= 1000; i-- )
  9.     {
  10.         int cifra = i;
  11.         int x = 0;
  12.         int b = 0;
  13.         while (cifra > 0)
  14.         {
  15.             x = cifra % 10;
  16.             cifra = cifra / 10;
  17.             if (x == 0)
  18.             {
  19.                 b += 6;
  20.             }
  21.             else if (x == 1)
  22.             {
  23.                 b += 3;
  24.             }
  25.             else if (x == 2)
  26.             {
  27.                 b += 5;
  28.             }
  29.             else if (x == 3)
  30.             {
  31.                 b += 5;
  32.             }
  33.             else if (x == 4)
  34.             {
  35.                 b += 4;
  36.             }
  37.             else if (x == 5)
  38.             {
  39.                 b += 5;
  40.             }
  41.             else if (x == 6)
  42.             {
  43.                 b += 5;
  44.             }
  45.             else if ( x == 7)
  46.             {
  47.                 b += 3;
  48.             }
  49.             else if ( x == 8)
  50.             {
  51.                 b += 7;
  52.             }
  53.             else if (x == 9)
  54.             {
  55.                 b += 5;
  56.             }
  57.         }
  58.         if (b == n)
  59.         {
  60.             cout << i;
  61.             return 0;
  62.         }
  63.  
  64.  
  65.     }
  66.     cout << -1;
  67.     return 0;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment