Advertisement
KhMG

Untitled

Dec 10th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string s;
  8. cin>>s;
  9. string res;
  10. res = '';
  11. for (int i = 0; i < s.length(); i++)
  12. { string prom;
  13. if (s[i] == "0") prom = '0000';
  14.  
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement