题解 2764: 带余除法

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

带余除法(超简单)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d%d",&a,&b);    printf("%d %d",a/……

基础入门)带余除法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d%d",&a,&b);    printf("%d ",a/b)……

2764: 带余除法

摘要:解题思路:分开算除和余。注意事项:无参考代码:#include<iostream> using namespace std; int main() {     int a,b;     ci……

编写题解 2764: 带余除法

摘要:解题思路:整除://求余:%注意事项:参考代码:a,b=map(int,input().split()) while b!=0: #当除数非0,进入while循环     print(a//b,a……