1 solutions

  • 0
    @ 2025-12-3 11:07:49

    C++ :

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    	int a,b,c,t;
    	cin>>a>>b>>c;
    	if(a<b)
    	{
    		t=a;
    		a=b;
    		b=t;
    	}
    	if(a<c)
    	{
    		t=a;
    		a=c;
    		c=t;
    	}
    	if(b<c)
    	{
    		t=b;
    		b=c;
    		c=t;
    	}
    	cout<<a<<" "<<b<<" "<<c<<endl;
    }
    
    • 1

    Information

    ID
    819
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    10
    Tags
    # Submissions
    6
    Accepted
    6
    Uploaded By