题解 求赞
2025-10-11 17:58:01
发布于:浙江
5阅读
0回复
0点赞
一道很简单的入门题
#include <iostream>
using namespace std;
int main() {
int g=2200,h=4396;
cout << h + g << endl;
cout << h - g << endl;
cout << h * g << endl;
cout << h / g << endl;
cout << h % g;
return 0;
}
这里空空如也






有帮助,赞一个