答案
2024-02-18 17:52:19
发布于:广东
42阅读
0回复
0点赞
我的才是对的,给个赞就行。
#include <iostream>
using namespace std;
int main(){
int g = 2200,h = 4396;
cout << h << "+" << g << "=" << h + g << endl;
cout << h << "-" << g << "=" << h - g << endl;
cout << h << "*" << g << "=" << h * g << endl;
cout << h << "/" << g << "=" << h / g << endl;
cout << h << "%" << g << "=" << h % g;
return 0;
}
这里空空如也
有帮助,赞一个