太简单了直接上代码
2024-01-29 18:44:05
发布于:浙江
5阅读
0回复
0点赞
#include<iostream>
using namespace std;
// 完成 max_value、min_value 函数
void max_value(int a,int b){
if(a > b){
cout << a;
}
else{
cout << b;
}
}
void min_value(int a,int b){
if(a < b){
cout << a;
}
else{
cout << b;
}
}
int main() {
int a, b;
cin >> a >> b;
cout << "max=";
max_value(a,b);
cout << endl;
cout << "min=";
min_value(a,b);
return 0;
}
这里空空如也
有帮助,赞一个