纯代码
2024-03-21 20:12:01
发布于:四川
16阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int g = 2200,h = 4396;
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;
return 0;
}
这里空空如也
有帮助,赞一个