题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a = 0; int b = 0; scanf("%d %d\n", &a, &b); printf("…… 题解列表 2023年02月27日 0 点赞 0 评论 438 浏览 评分:0.0
带余除法(超简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d %d",a/…… 题解列表 2022年12月30日 0 点赞 0 评论 528 浏览 评分:0.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