Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114723 王镜铭 比较大小 C++ Accepted 0 MS 268 KB 208 2025-03-23 11:57:50

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ long long a,b; cin>>a>>b; if(a>b)cout<<a<<" "<<b; else if(a<b)cout<<b<<" "<<a; //cout<<fixed<<setprecision(2)<<(a-32)*5/9; return 0; }