题解 | #计算带余除法#
计算带余除法
https://www.nowcoder.com/practice/34d3911bf2fd48a285f6396e886a1259
#include<stdio.h>
int main()
{
int a = 0, b = 0;
scanf_s("%d%d", &a, &b);
int c = 0, d = 0;
c = a / b;
d = a %b;
printf("%d %d", c ,d);
return 0;
}
计算带余除法
https://www.nowcoder.com/practice/34d3911bf2fd48a285f6396e886a1259
#include<stdio.h>
int main()
{
int a = 0, b = 0;
scanf_s("%d%d", &a, &b);
int c = 0, d = 0;
c = a / b;
d = a %b;
printf("%d %d", c ,d);
return 0;
}
相关推荐