计算数组中第三大元素 注:阿鲤实在Linux平台上测试的#include<stdio.h>int Third(int *nums,int numsSize){ int i = 0; int min = nums[0]; while(i < numsSize)//find the smallest number. { if(min > nums[i]) ... c 2023-11-27 51 点赞 0 评论 77 浏览