C++宏练习 简洁易懂
摘要:解题思路:注意事项:参考代码:#include <iostream>#define yu(a,b) (a%b) using namespace std;int main(){ int a,b,c; c……
python编写a%b
摘要:解题思路:跟a+b一样的思路只是改运算符,具体注意事项参照a+b参考代码:while True: try: a,b=map(int,input().strip().split()) print(a……
1037题: [宏定义的练习
摘要:# 自己写代码
```c
#include
#include
#define qiuyu(a,b) t=a/b;
int main()
{
int a,b,t;
scanf("……