编写函数int mymod(inta,intb)用以求a被b除之后的余数。

2026年09月25日 22:12
有1个网友回答
网友(1):

int mymod(inta,intb)
{
int c;
c=a%b;
return c;
}