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