A419.表达式计算2
2023-08-23 20:23:33
发布于:江苏
176阅读
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;
return 0;
}
全部评论 1
你的return是不是打错了
2023-07-14 来自 河南
0
有帮助,赞一个