题解 2764: 带余除法

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

筛选

2764: 带余除法

摘要:解题思路:/ 为除 %为取模注意事项:整数的运算结果是整数都是提交成功过的,可以直接使用。参考代码:#include<iostream>using namespace std;int ma……

带余除法(超简单)

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

题解 2764: 带余除法

摘要:##########################################a,b=map(int,input().split(" "))print(int(a/b),end=&#39; &#……

题解 2764: 带余除法

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

 编写题解 2764: 带余除法

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

带余除法(C++解法)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){   int a,b;   cin>>a>>b;   cout<<a/b……

编写题解 2764: 带余除法

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

编写题解 2764: 带余除法

摘要:解题思路:编写题解 2764: 带余除法注意事项:参考代码:x, y = map(eval,input().split())print(x//y,x%y,sep=" ")……