fork download
  1. //Bai 5: đề bài ko nói rõ nên ko biết code theo kiểu nào:))
  2.  
  3. #include<bits/stdc++.h>
  4. using namespace std;
  5. #define el "\n"
  6. #define ll long long
  7. #define ull unsigned long long
  8. #define se second
  9. #define fi first
  10. #define be begin()
  11. #define en end()
  12. #define Faster cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
  13.  
  14. void Run(int a[])
  15. {
  16. cin >> a[0] >> a[1] >> a[2];
  17. int min1 = INT_MAX, min2 = INT_MAX;
  18. for(int i =0; i < 3; i++)
  19. {
  20. if(a[i] < min1) // nếu bài cho phép số trùng thì thêm =
  21. {
  22. min2 = min1;
  23. min1 = a[i];
  24. }
  25. if(a[i] < min2 && a[i] > min1) min2 = a[i]; //nếu bài cho phép số trùng thì thêm =
  26. }
  27. cout << min2;
  28. }
  29. int main()
  30. {
  31. Faster;
  32. int a[3];
  33. Run(a);
  34. return 0;
  35. }
  36.  
  37.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
32765