私信TA
用户名:stronger
访问量:16219
签 名:
自我简介:
作者: stronger 发表时间:2017-07-19 23:53:41 浏览:507 | 评论:0
直接代码,和上个题目一样的思路丫参考代码:
#include <stdio.h>
#include <stdlib.h>
#define Div(A,B) A%B;
int main()
{
int a,b,ans;
scanf("%d%d",&a,&b);
ans=Div(a,b);
printf("%d",ans);
return 0;
}
0.0分
1 人评分