非常简单
2024-06-02 14:49:05
发布于:广东
4阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
cout<< 4396 << "+" << 2200 << "=" << 4396+2200 <<endl;
cout<< 4396 << "-" << 2200 << "=" << 4396-2200 <<endl;
cout<< 4396 << "" << 2200 << "=" << 43962200 <<endl;
cout<< 4396 << "/" << 2200 << "=" << 4396/2200 <<endl;
cout<< 4396 << "%" << 2200 << "=" << 4396%2200 <<endl;
return 0;
}
这里空空如也
有帮助,赞一个