题目ID:1111必做题100分
最新提交:
Compile Error
0 分
历史最高:
时间限制: 1000ms 空间限制: 300000kB
时间限制: 1000ms
空间限制: 300000kB
输入三个数,输出 最大数 和 最小数
输入一行,包含三个整数 �,�,�a,b,c
输出两行,第一行输出最大数,第二行输出最小数。具体格式见样例输出。
1 2 3
The maximum number is : 3 The minimum number is : 1
1<=�,�,�<=10000001<=a,b,c<=1000000
我的代码: #include #include using namespace std; int main(){ int a,b,c,x,y; cin>>a>>b>>c; x=max(a,b,c); y=min(a,b,c); cout<<“The maximum number is :”<<x<<endl; cout<<“The minimum number is :”<<y; return 0; }
max函数和min函数只能包含两个数 要写成 x=max(a,max(b,c))和 y=min(a,min(b,c))
x=max(a,max(b,c))
y=min(a,min(b,c))
AC了,谢谢