【C】#牛牛学取余#
牛牛学取余
https://www.nowcoder.com/practice/933a60dcf63e403d901c75f82e3154db
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a % b);
return 0;
}
牛牛学取余
https://www.nowcoder.com/practice/933a60dcf63e403d901c75f82e3154db
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a % b);
return 0;
}
相关推荐