运行 ❯
获取
自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <stdio.h> #include <stdlib.h> int main() { int a = 31; int b = 10; div_t result = div(a, b); printf("%d / %d = %d \n", a, b, result.quot); printf("Remainder: %d \n", result.rem); return 0; }
31 / 10 = 3
余数:1