题解 | #牛牛学取余#
牛牛学取余
https://www.nowcoder.com/practice/933a60dcf63e403d901c75f82e3154db
#include<stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
int c;
c = a % b;
printf("%d",c);
return 0;
}
#C语言##C工程师#
int main()
{
int a,b;
scanf("%d %d",&a,&b);
int c;
c = a % b;
printf("%d",c);
return 0;
}
#C语言##C工程师#