[编程入门]宏定义的练习 摘要:解题思路:定义一个宏定义,求取a b的余数注意事项:取余符号是%参考代码:#include<stdio.h>#define reasu (a%b)main(){ int a,b; s…… 题解列表 2024年08月27日 0 点赞 0 评论 148 浏览 评分:0.0
最基本的宏函数 课后习题9.2 (C语言代码) 摘要:解题思路利用宏函数。函数。本题的难点肯定不在算法, 应该是宏函数!带参宏定义的一般形式为: #define 宏名(形参表) 字符串;在字符串中含有各个形参。 带参宏调用的一般形式为: #define …… 题解列表 2018年12月20日 0 点赞 0 评论 622 浏览 评分: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 评论 86 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:/* 输入两个整数,求他们相除的余数。用带参的宏来实现,编程序。 */ #include<stdio.h> #define F(A,B) (A)=(A)%(B) int main(voi…… 题解列表 2017年07月03日 0 点赞 0 评论 866 浏览 评分:0.0
1037宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; int c; scanf("%d %d",&a,&b); c=a%b; printf("%d\…… 题解列表 2022年01月03日 0 点赞 0 评论 175 浏览 评分:0.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
[编程入门]宏定义的练习 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define qy(a,b) a%bint main(){int a,b; scanf("%d %d",&a,&b); p…… 题解列表 2019年04月22日 2 点赞 0 评论 409 浏览 评分:0.0
1037 宏定义的练习(相当于函数,不过有些参数需要声明) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define qiuyu(a,b) t=a%b;int main(){ int m,n,t; scanf("%d%d",&m,&n);…… 题解列表 2024年05月16日 0 点赞 0 评论 68 浏览 评分:0.0
简单的宏定义 摘要:解题思路:其实可以把宏定义看成一个可以自行设计的自定义函数,但必须注意的是,宏定义的表达式必须与调用的一样,并且数值名称也要一样,如interes如int a,int b;注意事项:参考代码:#inc…… 题解列表 2024年09月11日 1 点赞 0 评论 235 浏览 评分:0.0
题解 1037: [编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if(a>b): print(a%b)else: print(b%a)…… 题解列表 2021年08月02日 0 点赞 0 评论 258 浏览 评分:0.0