8 条题解
-
1
#include <bits/stdc++.h> using namespace std; int main() { int b = 2200, a = 4396; cout << a << "+" << b << "=" << a + b << endl; cout << a << "-" << b << "=" << a - b << endl; cout << a << "*" << b << "=" << a * b << endl; cout << a << "/" << b << "=" << a / b << endl; cout << a << "%" << b << "=" << a % b; return 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; }
- 1
信息
- ID
- 18199
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 7
- 标签
- (无)
- 递交数
- 1496
- 已通过
- 341
- 上传者