摘要: #include <stdio.h> void swap(int *p1,int *p2){ int tmp; tmp = *p1; *p1 = *p2; *p2 = tmp; }; int shunxu(int *a1,int *a2,int *a3){ if(*a1 > *a2){ swap(a 阅读全文
posted @ 2024-11-06 16:13 昵-称 阅读(66) 评论(0) 推荐(0)