Docoding OJ
Home
ProblemSet
Source/Category
Contest
Status
Ranklist
F.A.Qs
Login
Register
1044: C++语言 a+b+c 5.4
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:171
Solved:141
Submit
Submit Record
Statistics
ShowOff!
Description
有三个整数a b c,由键盘输入,输出其中的最大的数。
Input
一行数组,分别为a b c
Output
a b c其中最大的数
Sample Input
Copy
10 20 30
Sample Output
Copy
30
HINT
max ? if(a>b) ? int main(){ return 0; }
Source/Category
c++
基础
if
a+b
Submit
Submit Record
Statistics
ShowOff!