答案
2025-07-10 19:35:27
发布于:江苏
0阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main() {
int g = 4396;
int h = 2200;
cout << g<<"+"<<h<<"="<<g+h<<endl;
cout << g<<"-"<<h<<"="<<g-h<<endl;
cout << g<<""<<h<<"="<<gh<<endl;
cout << g<<"/"<<h<<"="<<g/h<<endl;
cout << g<<"%"<<h<<"="<<g%h;
return 0;
}
这里空空如也
有帮助,赞一个