Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2625 孙浚轩 输出较大的数 C++ Accepted 0 MS 260 KB 212 2024-01-20 12:37:10

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int a,b; char c; cin>>a>>c>>b; cout<<"max="; if(a>b) cout<<a; else cout<<b; cout<<endl; return 0; }