摘要: 要求:输入一个正整数n, 再输入n个整数,将它们按从小到大的顺序输出 // 输入指定的整数,然后把整数按从小到大的顺序每5个一行输出 #include <stdio.h> void order(int *a, int len); //函数声明 int main() { int n; printf(" 阅读全文
posted @ 2020-05-07 23:19 profesor 阅读(407) 评论(0) 推荐(0) 编辑