求十个数中最大值C语言代码。
时间: 2023-03-27 20:00:23 浏览: 93
最大值c语言代码
5星 · 资源好评率100%
可以使用循环和条件语句来实现,具体代码如下:
#include <stdio.h>
int main() {
int nums[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int max = nums[];
for (int i = 1; i < 10; i++) {
if (nums[i] > max) {
max = nums[i];
}
}
printf("最大值为:%d\n", max);
return ;
}
阅读全文