考试
1970-01-01 08:00:00

score是一个整数数组,有五个元素,已经正确初始化并赋值,

题目描述

score是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读下面代码,程序运行结果是(   ) temp = score[0];  for (int index = 1;index < 5;index++) {     if (score[index] < temp) {         temp = score[index];     } }

答案解析

求最小数

加载中...
AI正在思考中,请稍候...