fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int TEN = 10;
  5.  
  6. int main() {
  7. int n;
  8. cin >> n;
  9. for (int i = n; i >= TEN * TEN; --i) {
  10. int num = i;
  11. int zeroCount = 0;
  12. while (num > 0) {
  13. if (num % TEN == 0) {
  14. zeroCount++;
  15. }
  16. num /= TEN;
  17. }
  18. if (zeroCount == 2) {
  19. cout << i;
  20. break;
  21. }
  22. }
  23. return 0;
  24. }
  25.  
Success #stdin #stdout 0s 5288KB
stdin
91234
stdout
91200