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 评论 362 浏览 评分:9.9
超简单代码 摘要:解题思路:宏定义 a%b得到答案即可注意事项:参考代码:#include<iostream>using namespace std;#define s(a,b) a%b;//宏定义规则int main…… 题解列表 2023年09月14日 0 点赞 0 评论 398 浏览 评分:9.9
[编程入门]宏定义的练习-题解(C++代码) 摘要: `#include using namespace std; #define div(a,b) a%b int main(){ int i,j; …… 题解列表 2020年02月06日 0 点赞 0 评论 1492 浏览 评分:9.9
[编程入门]宏定义的练习-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;#define RMD(a,b) a%b;int main(){ int a1,b1; ci…… 题解列表 2020年08月06日 0 点赞 0 评论 707 浏览 评分:9.9
1037: [编程入门]宏定义的练习 摘要:解题思路:和上一题一样,主要是为了练习宏定义的格式。注意事项:无,甚至不用写注释。参考代码:#include <iostream> #define REMAINDER(num1, num2) (…… 题解列表 2022年03月04日 0 点赞 1 评论 456 浏览 评分:9.9
[编程入门]宏定义的练习(C++)(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define s(a,b) a%bint main(){ int a,b,t; cin>>a…… 题解列表 2021年11月14日 0 点赞 0 评论 412 浏览 评分:9.9
题解 1037: [编程入门]宏定义的练习 摘要:##思路 `a%b`即可。 ##代码 ```cpp #include using namespace std; int main(){ int a,b; cin>>a>>b; …… 题解列表 2024年02月07日 0 点赞 1 评论 178 浏览 评分:9.9
题目 1037: [编程入门]宏定义的练习 摘要:水个题解 ```cpp #include using namespace std; int main() { int a,b; cin >> a >> b; c…… 题解列表 2022年08月23日 0 点赞 2 评论 416 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题9.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d",a%b); …… 题解列表 2017年07月27日 0 点赞 0 评论 944 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#define Y(a,b) (a%b)using namespace std;int main(){ int a,b; cin>>…… 题解列表 2017年12月23日 0 点赞 0 评论 782 浏览 评分:0.0