提交时间:2024-03-06 13:04:44
运行 ID: 135675
#include<bits/stdc++.h> using namespace std; int main() { double a,b,c; cin>>a>>b>>c; cout<<max(max(a,b),c); return 0; }