1037: [编程入门]宏定义的练习 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月13日 0 点赞 0 评论 177 浏览 评分:0.0
1037: [编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define swap(a,b) printf("%d",a%b); int main() { int a,b; scan…… 题解列表 2022年06月13日 0 点赞 0 评论 145 浏览 评分: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 评论 134 浏览 评分:0.0
宏定义的练习 摘要: #include #define fun(a,b) t=a%b;; using namespace std; int main() { in…… 题解列表 2022年10月12日 0 点赞 0 评论 117 浏览 评分:0.0
C语言 宏定义的练习& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define remainder(a,b) printf("%d",a%b) int main(){ int a…… 题解列表 2022年11月19日 0 点赞 0 评论 91 浏览 评分:0.0
c++定义宏简单求余 摘要:解题思路:通过定义宏:#define quiYu(a,b) c=a%b //我英语不好,求余(quiYu)注意事项: 求余数:% 求除数:/参考代码:#include<i…… 题解列表 2023年01月04日 0 点赞 0 评论 124 浏览 评分:0.0
无参宏定义 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define m a%bint main(){ int a,b; scanf("%d%d",&a,&b); printf("%d",m…… 题解列表 2023年03月10日 0 点赞 0 评论 91 浏览 评分:0.0
[编程入门]宏定义的练习 摘要://a b两个数 #include<stdio.h> #define sum a%b int main(){ int a,b; scanf("%d%d",&a,&b); …… 题解列表 2023年06月03日 0 点赞 0 评论 79 浏览 评分: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 评论 119 浏览 评分:0.0
宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Division(a,b) (a)%(b)int main(){ int a,b; scanf("%d %d"…… 题解列表 2023年10月15日 0 点赞 0 评论 104 浏览 评分:0.0