要求一維數組的最大值,可以通過遍歷數組的每個元素,依次與當前的最大值進行比較,更新最大值。下面是一個示例代碼:
#include <stdio.h>
#define SIZE 5 // 數組大小
int main() {
int arr[SIZE] = {5, 2, 8, 4, 1};
int max = arr[0]; // 假設第一個元素為最大值
for (int i = 1; i < SIZE; i++) {
if (arr[i] > max) {
max = arr[i];
}
}
printf("最大值為:%d\n", max);
return 0;
}
運行結果為:
最大值為:8