2021年3月27日
摘要: /*前集体要:先看上一篇*//*本程序的含义是,将存在a,b中的数进行交换,如:本来a=1,b=2,交换后a=2,b=1*/ 1 #include <stdio.h> 2 void main() 3 { 4 int a,b,temp; 5 int *p,*q; //定义指针变量,int是指针指向的变 阅读全文
posted @ 2021-03-27 09:03 7i7i 阅读(101) 评论(0) 推荐(0) 编辑