3 条题解
-
0Guest LV 0
-
12022-08-24 16:22:48@
#include <bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; cout << a - b; return 0; }
-
12022-08-24 14:20:18@
太淼了
#include <bits/stdc++.h> using namespace std; int main() { int a, b; scanf("%d%d",&a,&b); printf("%d",a-b); return 0; }
-
12022-08-23 11:17:58@
直接按照题意模拟即可
- 1
信息
- ID
- 1001
- 难度
- 9
- 分类
- (无)
- 标签
- 递交数
- 9
- 已通过
- 3
- 通过率
- 33%
- 上传者