1785: 指针/引用练习之交换数字 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int swap(int &a,int &b); int main() { …… 题解列表 2023年09月25日 0 点赞 0 评论 151 浏览 评分:0.0
指针/引用练习之交换数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void swap(int &a,int &b){ int *p=&a,*q=&b;…… 题解列表 2023年05月07日 0 点赞 0 评论 139 浏览 评分:0.0
指针/引用练习之交换数字(C++引用交换法) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int swap(int &a,int &b) //引用相当于给变量取小名,…… 题解列表 2022年10月31日 0 点赞 0 评论 322 浏览 评分:6.0