赞
踩
源代码:
#include<stdio.h>
void swap(int *a,int *b)(用指针将a,b进行交换)
{
int temp=0;
temp=*a;
*a=*b;
*b=temp;
}
int main()
{
int a,b;
printf(“please int like this:\n”);
scanf(“a=%d,b=%d”,&a,&b);(注意输入格式为a=x,b=y)
swap(&a,&b);
printf("%d,%d",a,b);
return 0;
}
运行截图:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。