题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a/b…… 题解列表 2024年09月07日 0 点赞 0 评论 807 浏览 评分:9.9
C++简单解法 摘要:#includeusing namespace std;int main(void){ long long a,b; cin>>a>>b; cout…… 题解列表 2025年03月03日 1 点赞 0 评论 513 浏览 评分:10.0
函数大法(较为麻烦但是可以学一下函数怎么命名以及赋值 摘要:解题思路:注意事项:参考代码:def s_yu(a,b): c=a//b d=a%b return c,da,b=map(…… 题解列表 2026年04月19日 0 点赞 0 评论 60 浏览 评分:0.0
2764: 带余除法 摘要:解题思路:/ 为除 %为取模注意事项:整数的运算结果是整数都是提交成功过的,可以直接使用。参考代码:#include<iostream>using namespace std;int ma…… 题解列表 2026年05月20日 0 点赞 0 评论 3 浏览 评分:0.0