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