1 条题解

  • 0
    @ 2022-10-23 17:34:06
    #include<bits/stdc++.h>
    
    using namespace std;
    
    int main(){
    	int a,b;
    	cin>>a>>b;
    	if(a>=b){
    		cout<<b<<" "<<a;
    	}
    	else{
    		cout<<a<<" "<<b;
    	}
    	return 0;
    }
    
    • 1

    【入门】请将2个数按照由小到大的顺序排列后输出

    信息

    ID
    1095
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    递交数
    51
    已通过
    27
    上传者