输入两个整数,求他们相除的余数。用带参的宏来实现,编程序。
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#pragma warning(disable : 4996)#define AUM(a,b) c=a%b;int main(){ ……
[编程入门]宏定义的练习
摘要:解题思路:定义一个宏定义,求取a b的余数注意事项:取余符号是%参考代码:#include<stdio.h>#define reasu (a%b)main(){ int a,b; s……
编写题解 1037: [编程入门]宏定义的练习
摘要:```c
#include
#define compute(a,b) result=a%b;
int main()
{
int a,b,result;
scanf("%d %d",&a……
1037 宏定义的练习(相当于函数,不过有些参数需要声明)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define qiuyu(a,b) t=a%b;int main(){ int m,n,t; scanf("%d%d",&m,&n);……
1037: [编程入门]宏定义的练习(Python)
摘要:解题思路:自定义函数注意事项:区分算数运算符的运用:/ 除 60/10 6 % 取余 10%9 1 参考代码:def much_1(a,b):
……
题解 1037: [编程入门]宏定义的练习
摘要:##思路
`a%b`即可。
##代码
```cpp
#include
using namespace std;
int main(){
int a,b;
cin>>a>>b;
……