入 门 题 解
2024-05-04 13:03:52
发布于:广西
7阅读
0回复
0点赞
用了两个函数而已
有没有人能把它更加*山一点啊
#include <iostream>
using namespace std;
int f1(int h, int g, char c){
if (c == '+') return h + g;
else if (c == '-') return h - g;
else if (c == '*') return h * g;
else if (c == '/') return h / g;
else return h % g;
}
void f2(){
cout << "4396+2200=" << f1(4396, 2200, '+') << endl;
cout << "4396-2200=" << f1(4396, 2200, '-') << endl;
cout << "4396*2200=" << f1(4396, 2200, '*') << endl;
cout << "4396/2200=" << f1(4396, 2200, '/') << endl;
cout << "4396%2200=" << f1(4396, 2200, '%');
}
int main(){
f2();
return 0;
}
这里空空如也
有帮助,赞一个