题目描述输入两个整数,求他们相除的余数。输入a b两个数输出a/b的余数样例输入3 2样例输出1
还是很简单。。。
C++代码
#include<cstdio>
int main()
{
int
a,b;
scanf
(
"%d%d"
,&a,&b);
printf
"%d"
,a%b);
}