c语言…………


求助

随便啦czq
浏览 1070回答 1
1回答

慕沐4449596

#include<stdio.h>void swap(int *pa,int *pb);int main(){ int a,b; int *A,*B; A=&a; B=&b; scanf("%d %d",A,B); swap(A,B); printf("a=%d b=%d\n",a,b); return 0;}void swap(int *pa,int *pb){ int temp; temp=*pa; *pa=*pb; *pb=temp;}
打开App,查看更多内容
随时随地看视频慕课网APP