直接上代码
2023-07-18 22:02:58
发布于:江苏
23阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int a,b,c,d;
int temp;
cin>>a>>b>>c>>d;
for(int i=0;i<3;i++){
if(a<b){
temp=a;
a=b;
b=temp;
}
if(b<c){
temp=b;
b=c;
c=temp;
}
if(c<d){
temp=c;
c=d;
d=temp;
}
}
printf("%.2lf",(b+c)/2.00);
return 0;
}
这里空空如也
有帮助,赞一个