题解 1037: [编程入门]宏定义的练习 摘要:##思路 `a%b`即可。 ##代码 ```cpp #include using namespace std; int main(){ int a,b; cin>>a>>b; …… 题解列表 2024年02月07日 0 点赞 1 评论 168 浏览 评分:9.9
宏定义求解取余 摘要:解题思路:直接使用宏定义求解即可注意事项:参考代码:#include<iostream>using namespace std;#define dfs (a%b)int main(){ int …… 题解列表 2024年01月21日 0 点赞 0 评论 86 浏览 评分: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
超简单代码 摘要:解题思路:宏定义 a%b得到答案即可注意事项:参考代码:#include<iostream>using namespace std;#define s(a,b) a%b;//宏定义规则int main…… 题解列表 2023年09月14日 0 点赞 0 评论 391 浏览 评分:9.9
c++定义宏简单求余 摘要:解题思路:通过定义宏:#define quiYu(a,b) c=a%b //我英语不好,求余(quiYu)注意事项: 求余数:% 求除数:/参考代码:#include<i…… 题解列表 2023年01月04日 0 点赞 0 评论 81 浏览 评分: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
宏定义的练习 摘要: #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
题目 1037: [编程入门]宏定义的练习 摘要:水个题解 ```cpp #include using namespace std; int main() { int a,b; cin >> a >> b; c…… 题解列表 2022年08月23日 0 点赞 2 评论 412 浏览 评分:6.0
[编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; co…… 题解列表 2022年05月06日 0 点赞 0 评论 74 浏览 评分:0.0