两个数的交换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个数的交换相关的知识,希望对你有一定的参考价值。
方法一:使用函数实现两个数的交换
#include<stdio.h> int fun(int *a,int *b) { int tmp; tmp=*a; *a=*b; *b=tmp; } int main() { int x,y; printf("please input two number:\n"); scanf("%d %d",&x,&y); printf("x=%d,y=%d\n",x,y); fun(&x,&y); printf("x=%d,y=%d\n",x,y); return 0; }
2.
本文出自 “sunshine225” 博客,请务必保留此出处http://10707460.blog.51cto.com/10697460/1752766
以上是关于两个数的交换的主要内容,如果未能解决你的问题,请参考以下文章