Csharp/C#教程:C#实现输入10个数存入到数组中并求max和min及平均数的方法示例分享

本文实例讲述了C#实现输入10个数存入到数组中并求max和min及平均数的方法。分享给大家供大家参考,具体如下:

usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; namespaceConsoleApplication1 { classProgram { staticvoidMain(string[]args) { intnu1,max,min,number; int[]str=newint[10]; for(nu1=0;nu1<10;nu1++) str[nu1]=Int32.Parse(Console.ReadLine()); max=str[0]; min=str[1]; number=0; for(nu1=0;nu1<10;nu1++) { number+=str[nu1]; if(str[nu1]>max) max=str[nu1]; if(str[nu1]<min) min=str[nu1]; } number/=10; Console.WriteLine("maxis:{0}",max); Console.WriteLine("minis:{0}",min); Console.WriteLine("pingjunis:{0}",number); Console.ReadKey(); } } }

PS:这里再为大家推荐几款计算工具供大家进一步参考借鉴:

在线一元函数(方程)求解计算工具:
https://tools.jb51.net/jisuanqi/equ_jisuanqi

科学计算器在线使用_高级计算器在线计算:
https://tools.jb51.net/jisuanqi/jsqkexue

在线计算器_标准计算器:
https://tools.jb51.net/jisuanqi/jsq

更多关于C#相关内容还可查看本站专题:《C#字符串操作技巧上述就是C#学习教程:C#实现输入10个数存入到数组中并求max和min及平均数的方法示例分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/cdevelopment/907928.html

(0)
上一篇 2021年10月25日
下一篇 2021年10月25日

精彩推荐