core是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读下面代码,程序运行结果是____?temp = score[0];for (int index = 1;index < 5;index++) {if (score[index] > temp) {temp = score[index];}}Systyem.out.println(temp);
A: 求最大数
B: 求最小数
C: 找到数组最后一个元素
D: 编译出错
A: 求最大数
B: 求最小数
C: 找到数组最后一个元素
D: 编译出错
举一反三
- temp = score[0]; for (int index = 1;index < 5;index++) { if (score[index] < temp) {temp = score[index]; }} score是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读上面代码,程序运行结果是【 】 A: 求最大数 B: 求最小数 C: 找到数组最后一个元素 D: 编译出错
- score是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读下面代码,程序运行结果是()temp=score[0];for(intindex=1;index<5;index++){if(score[index]temp=score[index];}} A: 求最大数 B: 求最小数 C: 找到数组最后一个元素 D: 编译出错
- score是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读下面代码,程序运行结果是() temp = score[0]; for (int index = 1;index < 5;index++) { if (score[index] < temp) { temp = score[index]; } }
- 对于如下C程序:#include [stdio.h] void Func (char *); int main() { char str[20]; scanf ("%s", str); Func(str); printf ("%s\n", str);} void Func(char *str) { int i = 0; int index = 0; char temp; while (str[index] != '\0'){ index++; } for (i = 0; i < index/2 ; i++){ temp = str[i]; str[i] = str[index - 1 - i]; str[index - 1 - i] = temp; }}如果输入为“abcd”,则输出为:[/i][/i] A: abcd B: dcba C: dcdc D: abab
- score是一个整数数组,有五个元素,已经正确初始化并赋值,仔细阅读下面代码,程序运行结果是