题解 | #计算带余除法#
计算带余除法
https://www.nowcoder.com/practice/34d3911bf2fd48a285f6396e886a1259
#include <stdio.h> int main() { int a, b, c, d; scanf("%d %d", &a, &b); if(a != 0 && b != 0) //限制条件,两个数都不可为0 { c = a / b; d = a % b; } printf("%d %d", c, d); return 0; }
#题解#