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

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

int mymod(int a,int b)
{ return a % b;
}