赞
踩
#include<stdio.h> #include<stdlib.h> //数值交换函数 void swap(int *a,int *b) { int temp; temp = *a; *a = *b; *b = temp; } void main() { int a[2]={12,56}; printf("交换之前的 a[0]=%d,a[1]=%d \n",a[0],a[1]); swap(&a[0],&a[1]); printf("交换之后的 a[0]=%d,a[1]=%d \n",a[0],a[1]); int b=19; int c=18; printf("交换之前的 b=%d,c=%d \n",b,c); swap(&b,&c); printf("交换之后的 b=%d,c=%d ",b,c); system("pause"); }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。