Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98170 王仲炜 求三个数的最大值 C++ Accepted 0 MS 268 KB 233 2024-11-17 14:58:04

Tests(1/1):


Code:

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