五大C++常用运算符— +-*/%
2024-02-07 11:06:06
发布于:广东
5阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
const int h = 4396;
const int g = 2200;
cout<<h+g<<endl;
cout<<h-g<<endl;
cout<<h*g<<endl;
cout<<h/g<<endl;
cout<<h%g;
return 0;
}
这里空空如也
有帮助,赞一个