Lucian_Adrian

Untitled

Aug 22nd, 2021
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int x,a,b,c;
  6. cin >> x;
  7. a=x/100;
  8. b=(x%100)/10;
  9. c=(x%100)%10;
  10. if ((a<b && b<c) || (c<b && b<a))
  11. cout << b;
  12. else if ((b<a && a<c) || (c<a && a<b))
  13. cout << a;
  14. else
  15. cout << c;
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment