2020年6月21日

使用指针与数组

摘要: #include <stdio.h>#define N 10void Maxmin(int *ps)//查出数组中最大最小值{ int i,max=ps[0],min=ps[0]; for(i=1;i<N;i++) { max=(max>ps[i]?max:ps[i]); min=(min<ps[i 阅读全文

posted @ 2020-06-21 19:28 白胡 阅读(140) 评论(0) 推荐(0) 编辑

导航