Advertisement
cupsamada

1.a (stegerea c>5)

Nov 18th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int n, c, rez=0, p=1;
  6. cin>>n;
  7. do
  8. {
  9. c=n%10;
  10. if(c<=5)
  11. {
  12. rez=rez+c*p;
  13. p=p*10;
  14. }
  15. n=n/10;
  16. }while(n!=0);
  17. cout<<rez;
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement