C语言程序设计教程(第三版)课后习题9.1 (C语言代码) 摘要:解题思路:注意事项: #define 标识符 字符串; 例如#define m a*b;其中a*b的值就是m,在主函数中m就是调用a*b;带参宏定义的一般形式为: #define 宏名(形参表) …… 题解列表 2019年04月06日 0 点赞 0 评论 443 浏览 评分:0.0
[编程入门]带参数宏定义练习 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define fun(m,n) t=m,m=n,n=t;int main(){ int m,n,t; scanf("%d",&m); …… 题解列表 2019年05月04日 0 点赞 0 评论 341 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.1 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h>#include<math.h>#include<string.h>#include<ctype.h>#define exchan…… 题解列表 2017年12月20日 0 点赞 0 评论 380 浏览 评分:0.0
[编程入门]带参数宏定义练习-题解(Java代码) 摘要:参考代码:import java.util.Scanner;public class Main { public static void swap(int a, int b){ S…… 题解列表 2020年12月04日 0 点赞 0 评论 208 浏览 评分:0.0
swap () :交换两个变量值 摘要:解题思路: 使用 STL 算法:swap(),交换两个元素注意事项:参考代码:#include<iostream>using namespace std;#define myswap(x,y) (s…… 题解列表 2022年10月19日 0 点赞 0 评论 84 浏览 评分:0.0
[编程入门]带参数宏定义练习 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; co…… 题解列表 2022年05月06日 0 点赞 0 评论 97 浏览 评分:0.0
[编程入门]带参数宏定义练习-题解(C语言代码) 摘要:#include #include void swap(int *a,int *b) { int temp; temp = *a; *a = *b; *b = temp; …… 题解列表 2019年07月27日 0 点赞 0 评论 441 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main(){…… 题解列表 2018年01月09日 0 点赞 0 评论 729 浏览 评分:0.0
编写题解 1036: [编程入门]带参数宏定义练习--解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define change(a,b) t=a,a=b,b=tint main(){int a,b,t;scanf("%d%d",&a,…… 题解列表 2022年03月08日 0 点赞 0 评论 99 浏览 评分:0.0
最帅的我,LDM 过来膜拜吧!! 摘要:解题思路:注意带参注意事项:别打错符号就可以了!参考代码:#include<stdio.h>#define N(x,y) t=x,x=y,y=tint main(){ int x,y,t; scanf…… 题解列表 2018年09月16日 0 点赞 0 评论 368 浏览 评分:0.0