博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
01.深入学习方法
阅读量:5240 次
发布时间:2019-06-14

本文共 471 字,大约阅读时间需要 1 分钟。

方法:
方法的规范,一个方法的功能一定要单一.(即一个方法就做一件是事情)
方法中,最忌讳的就是,提示用户输入.
练习:
 
  1. namespace _01.深入学习方法
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. //利用方法计算一个数组中的元素的和
  8. int[] intArray = new int[] {
    13,14,45,74,345,756,23,64,2};
  9. int sum=Program.Sum(intArray);
  10. Console.WriteLine(sum);
  11. Console.ReadKey();
  12. }
  13. public static int Sum(int[] a)
  14. {
  15. int sum = 0; //用来保存数组的中元素的和
  16. for (int i = 0; i < a.Length; i++)
  17. {
  18. sum += a[i];
  19. }
  20. return sum;
  21. }
  22. }
  23. }
1047912-20161102185053221-471492693.png
 

转载于:https://www.cnblogs.com/HelloZyjS/p/6024056.html

你可能感兴趣的文章
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
discuz 常用脚本格式化数据
查看>>
洛谷P2777
查看>>
PHPStorm2017设置字体与设置浏览器访问
查看>>
Django 相关
查看>>
git init
查看>>
训练记录
查看>>
IList和DataSet性能差别 转自 http://blog.csdn.net/ilovemsdn/article/details/2954335
查看>>
Hive教程(1)
查看>>
第16周总结
查看>>
C#编程时应注意的性能处理
查看>>
Fragment
查看>>