C 语言实例 - 查找数组中最小的元素
C 语言教程
· 2019-02-21 06:27:50
使用 for 循环迭代出输出元素,并将各个元素相加算出总和,再除于元素个数:
实例
#include <stdio.h>
int main() {
int array[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
int loop, smallest;
smallest = array[0];
for(loop = 1; loop < 10; loop++) {
if( smallest > array[loop] )
smallest = array[loop];
}
printf("最小元素为 %d", smallest);
return 0;
}
输出结果为:
最小元素为 0
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
PHP Cookbook
Adam Trachtenberg、David Sklar / O'Reilly Media / 2006-08-01 / USD 44.99
When it comes to creating dynamic web sites, the open source PHP language is red-hot property: used on more than 20 million web sites today, PHP is now more popular than Microsoft's ASP.NET technology......一起来看看 《PHP Cookbook》 这本书的介绍吧!