题解 | #计算带余除法#
计算带余除法
https://www.nowcoder.com/practice/34d3911bf2fd48a285f6396e886a1259
#include <iostream>
#include <ostream>
using namespace std;
int main()
{
int a=0; int b=0;
scanf("%d%d",&a,&b);
if (0<a,b<10000)
printf("%d %d",a/b,a%b);
}
// 64 位输出请用 printf("%lld")