C语言:输入两个整数,求它们相除的余数,用带参的宏来实现编程序.下面的程序有错,帮我改改啊!#include #define SURPLUS(a,b)((a)%(b)) main(){int a,b;printf("please input integer:");scanf("%d,%d",&a,&b);printf("余数:
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/25 04:14:39
C语言:输入两个整数,求它们相除的余数,用带参的宏来实现编程序.下面的程序有错,帮我改改啊!#include #define SURPLUS(a,b)((a)%(b)) main(){int a,b;printf("please input integer:");scanf("%d,%d",&a,&b);printf("余数:
C语言:输入两个整数,求它们相除的余数,用带参的宏来实现编程序.
下面的程序有错,帮我改改啊!
#include
#define SURPLUS(a,b)((a)%(b))
main()
{
int a,b;
printf("please input integer:");
scanf("%d,%d",&a,&b);
printf("余数:%d",SURPLUS(a,b));
getch();
}
C语言:输入两个整数,求它们相除的余数,用带参的宏来实现编程序.下面的程序有错,帮我改改啊!#include #define SURPLUS(a,b)((a)%(b)) main(){int a,b;printf("please input integer:");scanf("%d,%d",&a,&b);printf("余数:
#include
#define SURPLUS(a,b)(a%b)
main()
{
int a,b;
printf("please input integer:");
scanf("%d,%d",&a,&b);
printf("余数:%d",SURPLUS(a,b));
getchar();
getchar();
return 0;
}
试一下,我在我的编译器上行.我用的是DEV