Josif_tepe

Untitled

Nov 22nd, 2025
600
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.81 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4.     int a,b,c,d;
  5.     cin>>a>>b>>c>>d;
  6.    
  7.     if(a >= b and a >= c and a >= d) {
  8.         if(b >= c and b >= d) {
  9.             if(c >= d) {
  10.                 cout << a << " " << b << " " << c << " " << d << endl;
  11.             }
  12.             else {
  13.                 cout << a << " " << b << " " << d << " " << c << endl;
  14.             }
  15.         }
  16.         else if(c >= b and c >= d) {
  17.             if(b >= d) {
  18.                 cout << a << " " << c << " " << b << " " << d << endl;
  19.             }
  20.             else {
  21.                 cout << a << " " << c << " " << d << " " << b << endl;
  22.  
  23.             }
  24.         }
  25.         else if(d >= b and d >= c) {
  26.             if(b >= c) {
  27.                 cout << a << " " << d << " " << b << " " << c << endl;
  28.             }
  29.             else {
  30.                 cout << a << " " << d << " " << c << " " << b << endl;
  31.             }
  32.         }
  33.     }
  34.     else if(b >= a and b >= c and b >= d) {
  35.         if(a >= c and a >= d) {
  36.             if(c >= d) {
  37.                 cout << b << " " << a << " " << c << " " << d << endl;
  38.             }
  39.             else {
  40.                 cout << b << " " << a << " " << d << " " << c << endl;
  41.  
  42.             }
  43.         }
  44.         else if(c >= a and c >= d) {
  45.             if(a >= d) {
  46.                 cout << b << " " << c << " " << a << " " << d << endl;
  47.             }
  48.             else {
  49.                 cout << b << " " << c << " " << d << " " << a << endl;
  50.  
  51.             }
  52.         }
  53.         else if(d >= a and d >= c) {
  54.             if(a >= c) {
  55.                 cout << b << " " << d << " " << a << " " << c << endl;
  56.             }
  57.             else {
  58.                 cout << b << " " << d << " " << c << " " << a << endl;
  59.             }
  60.         }
  61.     }
  62.     .
  63.     .
  64.     .
  65.    
  66.  
  67.     return 0;
  68. }
  69.  
Advertisement
Add Comment
Please, Sign In to add comment