题解 3000: 交换值 摘要:解题思路:简单一点注意事项:参考代码: inta,b; scanf("%d%d",&…… 题解列表 2024年11月01日 0 点赞 0 评论 78 浏览 评分:9.9
交换值(投机取巧的做法) 摘要:解题思路:直接在输出的时候先输出b,再输出a,也算是一种交换。注意事项:参考代码:#include<stdio.h>intmain(){ inta,b…… 题解列表 2024年01月28日 0 点赞 0 评论 44 浏览 评分:0.0
不用指针,简单写法 摘要:解题思路:一看就懂!注意事项:参考代码:#include<stdio.h>intmain(){inta,b;intc=0;scanf_s("%d%d",&a,&…… 题解列表 2024年01月17日 0 点赞 0 评论 310 浏览 评分:9.9
交换值给个好评 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ inta,b;&n…… 题解列表 2023年11月21日 0 点赞 1 评论 131 浏览 评分:9.9
编写题解 3000: 交换值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b,c; &am…… 题解列表 2023年03月25日 0 点赞 0 评论 94 浏览 评分:0.0
题解 3000: 交换值(函数法)传址调用 摘要:解题思路:因为这里要对两个内存中的值进行操作,所以要传地址注意事项:参考代码:voidfun(int*pa,int*pb){inttmp=0;tmp=*pa;*pa=*pb;*pb=tmp;}intm…… 题解列表 2023年02月26日 0 点赞 0 评论 291 浏览 评分:9.9
题目 3000: 交换值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta=0;intb=0;intc=0;scanf("%d%d",&a,&…… 题解列表 2023年02月26日 0 点赞 0 评论 75 浏览 评分:0.0
交换 a b 的值(不增加新的变量) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b; scanf…… 题解列表 2023年02月05日 0 点赞 0 评论 151 浏览 评分:0.0
交换值(超简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b; scanf…… 题解列表 2022年12月29日 0 点赞 1 评论 552 浏览 评分:8.4
基础入门)交换值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b; scanf…… 题解列表 2022年11月20日 0 点赞 0 评论 297 浏览 评分:7.3