有一数组内存放10个整数,要求找出最大数和它的下标, 然后把它和数组中第0个元素对换位置。用C语言写
时间: 2024-02-01 17:15:02 浏览: 72
可以使用以下代码实现:
```c
#include <stdio.h>
int main() {
int arr[10] = {3, 5, 1, 8, 2, 9, 4, 7, 6, 0}; // 假设数组中有这些数
int max = arr[0];
int maxIndex = 0;
// 找出最大数和它的下标
for (int i = 1; i < 10; i++) {
if (arr[i] > max) {
max = arr[i];
maxIndex = i;
}
}
// 把最大数和数组中第0个元素对换位置
int temp = arr[0];
arr[0] = max;
arr[maxIndex] = temp;
// 输出对换后的数组
for (int i = 0; i < 10; i++) {
printf("%d ", arr[i]);
}
return 0;
}
```
输出结果为:`9 5 1 8 2 3 4 7 6 0`,其中最大数9已经被移动到数组的第0个位置。
相关问题
有一数组内存放10个整数,要求找出最大数和它的下标, 然后把它和数组中第0个元素对换位置
以下是Python代码实现:
```
nums = [3, 8, 2, 9, 5, 1, 7, 4, 6, 10]
max_num = nums[0]
max_index = 0
for i in range(1, len(nums)):
if nums[i] > max_num:
max_num = nums[i]
max_index = i
print("最大数为:", max_num)
print("最大数的下标为:", max_index)
nums[0], nums[max_index] = nums[max_index], nums[0]
print("交换后的数组为:", nums)
```
输出结果为:
```
最大数为: 10
最大数的下标为: 9
交换后的数组为: [10, 8, 2, 9, 5, 1, 7, 4, 6, 3]
```
解释:
首先,我们定义了一个包含10个整数的数组nums。然后,我们通过一个for循环遍历数组,找出最大数和它的下标。在循环中,我们使用if语句来比较当前数和最大数的大小,如果当前数比最大数大,则更新最大数和最大数的下标。最后,我们输出最大数和它的下标,并使用Python的交换语法把最大数和数组中第0个元素对换位置。最后,我们输出交换后的数组。
有一数组内存放10个整数,要求找出最大数和它的下标, 然后把它和数组中第0个元素对换位置。
好的,这是一个比较常见的编程问题。以下是我提供的代码实现:
```
int arr[10] = {5, 8, 2, 10, 6, 1, 9, 3, 7, 4};
int maxIndex = 0;
int i;
for (i = 1; i < 10; i++) {
if (arr[i] > arr[maxIndex]) {
maxIndex = i;
}
}
int temp = arr[0];
arr[0] = arr[maxIndex];
arr[maxIndex] = temp;
```
简单地说,这个程序会遍历整个数组,找到最大值的下标,然后使用一个临时变量交换数组的两个元素。这样,最大值就会被移动到数组的第0个位置。
希望这个回答能够解决你的问题。
阅读全文