tj
2025-08-15 09:46:06
发布于:福建
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
long long h , g;
int main() {
g = 2200;
h = 4396;
cout << "4396+2200=" <<h + g << endl;
cout << "4396-2200=" <<h - g << endl;
cout << "4396*2200=" <<h * g << endl;
cout << "4396/2200=" <<h / g << endl;
cout << "4396%2200=" <<h % g << endl;
return 0;
}
这里空空如也
有帮助,赞一个