C语言程序设计教程(第三版)课后习题9.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define M(x,y) Tmp=x;x=y;y=Tmp;int main(){ int a,b,Tmp; scanf("%d%d"…… 题解列表 2018年04月07日 0 点赞 0 评论 567 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main(){…… 题解列表 2018年01月09日 0 点赞 0 评论 726 浏览 评分:0.0
1036: [编程入门]带参数宏定义练习 摘要:解题思路:只要实现交换就好注意事项:参考代码:m,n = map(int,input().split())print(n,m)…… 题解列表 2022年04月07日 0 点赞 0 评论 175 浏览 评分:0.0
[编程入门]带参数宏定义练习-题解(C语言代码) 摘要:#include #include #define swap(a,b,c) {c=b;b=a;a=c;} int main() { int i,j,c; scanf("%d %d",…… 题解列表 2020年01月13日 0 点赞 0 评论 265 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define EX(a,b) c=a;a=b;b=c int main() { int a,b,c; scanf("%…… 题解列表 2018年04月26日 0 点赞 0 评论 373 浏览 评分:0.0
编写题解 1036: [编程入门]带参数宏定义练习 简单利用指针来交换 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<iomanip>using namespace std;int main(){ i…… 题解列表 2023年01月11日 0 点赞 0 评论 88 浏览 评分:0.0
直接输出交换(偷奸耍滑) 摘要:参考代码:#include<stdio.h> #define swap(a, b) printf("%d %d", b, a); int main(){ int a, b; scanf("…… 题解列表 2019年01月13日 1 点赞 0 评论 486 浏览 评分:0.0
带参数宏定义,交换数值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Swap(x,y,t) (t=x,x=y,y=t) int main(){ int a,b,c; scanf…… 题解列表 2023年10月15日 0 点赞 0 评论 58 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.1 (C语言代码) 摘要:解题思路:注意事项:一定要细心!参考代码:#include <stdio.h>#define jiaohuan(a,b) temp=a;a=b;b=tempint main(){ int temp,c…… 题解列表 2017年12月09日 0 点赞 0 评论 508 浏览 评分:0.0
位操作交换数字 摘要:解题思路:a^a=0 0^a=a注意事项:参考代码:#include<stdio.h>#define change(a,b) {a=a^b;b=a^b;a=a^b; }int main(){int …… 题解列表 2024年04月26日 0 点赞 0 评论 81 浏览 评分:0.0