tj
2024-10-13 18:45:10
发布于:上海
1阅读
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 << "=" << 4396*2200 <<endl;
cout<< 4396 << "/" << 2200 << "=" << 4396/2200 <<endl;
cout<< 4396 << "%" << 2200 << "=" << 4396%2200 <<endl;
}
这里空空如也
有帮助,赞一个