标签:wap swap oid 技术 main 二次 lib swa scanf
#include<stdio.h> #include<stdlib.h> int main() { void swap(int *p,int *q); int a,b; int *p,*q; scanf("%d ,%d",&a,&b); p=&a; q=&b; swap(p,q); printf("%d,%d",a,b); system("pause"); } swap(int *p,int *q) {int temp; temp=*p; *p=*q; *q=temp; } 按书上的改的,总结到底怎么写啊,求老师点拨
标签:wap swap oid 技术 main 二次 lib swa scanf
原文地址:http://www.cnblogs.com/lp1256--/p/6601081.html