第22484题 判断题
判断:C++内置函数sort()是否支持数组的局部排序

示例如下:

int a[] = {10,9,8,7,6,5,4,3,2,1};
sort(a,a+5);

执行后数组是否变为 {6,7,8,9,10,5,4,3,2,1}?

{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析