4918
5880
3万
GROAD
曲径通幽,安觅芳踪。
include <stdlib.h> div_t div(int numerator, int denominator);
typedef struct { int quot; int rem; } div_t;
#include <stdio.h> #include <stdlib.h> int main() { div_t result; result = div(38, 5); printf ("Quotient = %d, remainder = %d\n", result.quot, result.rem); return 0; }
./div Quotient = 7, remainder = 3
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
小黑屋|手机版|Archiver|曲径通幽 ( 琼ICP备11001422号-1|公安备案:46900502000207 )
GMT+8, 2025-6-17 23:09 , Processed in 0.091978 second(s), 23 queries .
Powered by Discuz! X3.2
© 2001-2013 Comsenz Inc.