带余除法(超简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d %d",a/…… 题解列表 2022年12月30日 0 点赞 0 评论 638 浏览 评分:0.0
基础入门)带余除法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d ",a/b)…… 题解列表 2022年11月20日 0 点赞 0 评论 1191 浏览 评分:9.3
2764: 带余除法 摘要:解题思路:分开算除和余。注意事项:无参考代码:#include<iostream> using namespace std; int main() { int a,b; ci…… 题解列表 2022年10月22日 0 点赞 0 评论 727 浏览 评分:6.0
编写题解 2764: 带余除法 摘要:解题思路:整除://求余:%注意事项:参考代码:a,b=map(int,input().split()) while b!=0: #当除数非0,进入while循环 print(a//b,a…… 题解列表 2022年10月18日 0 点赞 0 评论 1545 浏览 评分:9.7