[编程入门]宏定义的练习 摘要://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
[编程入门]宏定义的练习(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 评论 191 浏览 评分:9.9
无参宏定义 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define m a%bint main(){ int a,b; scanf("%d%d",&a,&b); printf("%d",m…… 题解列表 2023年03月10日 0 点赞 0 评论 50 浏览 评分:0.0
c++定义宏简单求余 摘要:解题思路:通过定义宏:#define quiYu(a,b) c=a%b //我英语不好,求余(quiYu)注意事项: 求余数:% 求除数:/参考代码:#include<i…… 题解列表 2023年01月04日 0 点赞 0 评论 80 浏览 评分:0.0
1037: [编程入门]宏定义的练习 摘要:```cpp #include #define S(a,b) a%b int main() { int a,b; scanf("%d %d",&a,&b); printf("%d…… 题解列表 2022年12月06日 0 点赞 0 评论 349 浏览 评分:9.9
C语言 宏定义的练习& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define remainder(a,b) printf("%d",a%b) int main(){ int a…… 题解列表 2022年11月19日 0 点赞 0 评论 62 浏览 评分:0.0
题目 1037: [编程入门]宏定义的练习—常规求解方法 摘要:解题思路:带参宏注意事项:宏名最好用大写字母,方便后期一遇到这个大写字母的宏名就知道这里用到了宏的处理方法参考代码:#include<stdio.h> #define REMAINDER(a,b) …… 题解列表 2022年10月26日 0 点赞 0 评论 315 浏览 评分:6.0
宏定义与指针区别 摘要:解题思路:注意事项:参考代码:指针是访问 而宏定义是机械替换#include<stdio.h>#define swap(a,b){int temp;temp=a;a=b;b=temp}int main…… 题解列表 2022年10月16日 0 点赞 0 评论 243 浏览 评分:6.0
宏定义的练习 摘要: #include #define fun(a,b) t=a%b;; using namespace std; int main() { in…… 题解列表 2022年10月12日 0 点赞 0 评论 95 浏览 评分:0.0
1037-宏定义的练习 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define REM(x,y) t=x%yint main(){ int a,b,t; ci…… 题解列表 2022年10月05日 0 点赞 0 评论 106 浏览 评分:0.0