交换两个数
Posted lihuanyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了交换两个数相关的知识,希望对你有一定的参考价值。
void swap4(int *p,int *q) { int temp; temp = *p; *p = *q; *q = temp; }
如下图所示:
void swap5(int &p, int &q) { int temp; temp = p; p = q; q = temp; }
流程类似swap5。
以上是关于交换两个数的主要内容,如果未能解决你的问题,请参考以下文章