Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132090 张咏灏 求三个数的最大值 C++ Accepted 1 MS 272 KB 253 2025-10-05 16:21:04

Tests(1/1):


Code:

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