[编程入门]宏定义的练习(C++)(简单粗暴) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#define ms(a,b) t=a%b;int main(){ int a,b,t; s…… 题解列表 2023年04月13日 0 点赞 0 评论 192 浏览 评分:9.9
[编程入门]宏定义的练习 摘要://a b两个数 #include<stdio.h> #define sum a%b int main(){ int a,b; scanf("%d%d",&a,&b); …… 题解列表 2023年06月03日 0 点赞 0 评论 62 浏览 评分:0.0
1037题: [宏定义的练习 摘要:# 自己写代码 ```c #include #include #define qiuyu(a,b) t=a/b; int main() { int a,b,t; scanf("…… 题解列表 2023年07月03日 0 点赞 0 评论 87 浏览 评分:0.0
宏定义的练习 摘要:解题思路:注意事项:注意要求是a/b的余数 余数参考代码:#include<stdio.h> #define yushu (a%b) int main() { int a,b,c; …… 题解列表 2023年07月21日 0 点赞 0 评论 316 浏览 评分:9.9
超简单代码 摘要:解题思路:宏定义 a%b得到答案即可注意事项:参考代码:#include<iostream>using namespace std;#define s(a,b) a%b;//宏定义规则int main…… 题解列表 2023年09月14日 0 点赞 0 评论 391 浏览 评分:9.9
宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Division(a,b) (a)%(b)int main(){ int a,b; scanf("%d %d"…… 题解列表 2023年10月15日 0 点赞 0 评论 62 浏览 评分:0.0
python编写a%b 摘要:解题思路:跟a+b一样的思路只是改运算符,具体注意事项参照a+b参考代码:while True: try: a,b=map(int,input().strip().split()) print(a…… 题解列表 2023年11月13日 0 点赞 0 评论 93 浏览 评分:0.0
这题简单吧 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d",&a,&b); c=a%b; p…… 题解列表 2023年11月28日 0 点赞 0 评论 66 浏览 评分:0.0
c语言宏定义求余数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#define ret(a,b) t=a%b;int main(){ int a,b,t; …… 题解列表 2023年12月13日 0 点赞 0 评论 74 浏览 评分:0.0
C++宏练习 简洁易懂 摘要:解题思路:注意事项:参考代码:#include <iostream>#define yu(a,b) (a%b) using namespace std;int main(){ int a,b,c; c…… 题解列表 2023年12月18日 0 点赞 0 评论 40 浏览 评分:0.0