Advertisement
Alx09

Untitled

Feb 20th, 2022
876
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6.  
  7.  
  8. int main()
  9. {
  10.     int B, cifra, nrBaza10;
  11.     cin >> B >> cifra;
  12.     while(cifra < B){
  13.         // afli numarul in baza 10
  14.         cin >> cifra;
  15.     }
  16.  
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement