求十个数中的最大值c语言程序段
时间: 2023-04-06 22:04:48 浏览: 94
以下是求十个数中的最大值的C语言程序段:
```c
#include <stdio.h>
int main() {
int nums[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int max = nums[0];
for (int i = 1; i < 10; i++) {
if (nums[i] > max) {
max = nums[i];
}
}
printf("最大值为:%d\n", max);
return 0;
}
```
阅读全文