在职程序员教你写代码,小白秒懂
2024-09-23 14:15:27
发布于:广东
10阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main() {
int h=4396;
int g=2200;
cout << h+g << endl;
cout << h-g << endl;
cout << h*g << endl;
cout << h/g << endl;
cout << h%g << endl;
return 0;
}
这里空空如也
有帮助,赞一个