码迷,mamicode.com
首页 > 其他好文 > 详细

求10个数中的最大值

时间:2015-11-05 00:56:32      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:system   return   最大值   

求10个数中的最大值:

求数组长度:sizeof(arr) / sizeof(arr[0])

#define _CRT_SECURE_NO_WARNING

#include<stdio.h>

#include<stdlib.h>

int main()

{

int arr[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };

int i = 0;

int max = arr[0];

for (i = 1; i < sizeof(arr) / sizeof(arr[0]); i++)

{

if (max < arr[i])

max = arr[i];

}

printf("max=%d\n", max);

system("pause");

return 0;

}


本文出自 “Stand out or Get out” 博客,转载请与作者联系!

求10个数中的最大值

标签:system   return   最大值   

原文地址:http://jiazhenzhen.blog.51cto.com/10781724/1709760

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!