- 带余除法
这题好难......
- @ 2025-5-20 20:49:20
有没有人该我代码啊
4 条评论
-
吕梓锐 LV 7 @ 2025-9-24 15:39:22对,哪里难了
-
@ 2025-8-4 14:16:11哪里难了
-
@ 2025-6-5 16:22:10#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a/b<<" "<<a%b; return 0; } -
@ 2025-5-26 21:23:09#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin >> a>> b;
int quotient = a/b;
int remainder = a%b;
cout << quotient << " " << remainder;
return 0; }
- 1
信息
- ID
- 10
- 时间
- ms
- 内存
- MiB
- 难度
- 1
- 标签
- 递交数
- 281
- 已通过
- 130
- 上传者