当前位置:   article > 正文

.net实验九_net add 方法

net add 方法

题目一:定义一个Add方法,用来计算两个数的和,该方法中有两个形参,但在方法体中对其中的一个形参x执行加y操作,并返回x;在Main()方法中调用该方法,为该方法传入定义好的实参;最后分别显示调用Add方法计算之后的x值和实参y的值。

  1. using System;
  2. namespace zuoye91
  3. {
  4. class Program
  5. {
  6. static int Add(int x,int y)
  7. {
  8. x += y;
  9. return x;
  10. }
  11. static void Main(string[] args)
  12. {
  13. int y = 200;
  14. int x = Add(100, 200);
  15. Console.WriteLine("x="+ x);
  16. Console.WriteLine("y="+ y);
  17. }
  18. }
  19. }

 题目二:修改上面的程序,将形参x定义为ref参数,再显示调用Add方法之后的实参x的值。

  1. using System;
  2. namespace zuoye92
  3. {
  4. class Program
  5. {
  6. static int Add(ref int x, ref int y)
  7. {
  8. x = 100;
  9. y = 200;
  10. x += y;
  11. return x;
  12. }
  13. static void Main(string[] args)
  14. {
  15. int x = 20;
  16. int y = 10;
  17. Add(ref x,ref y);
  18. Console.WriteLine("ref用法x=" + x);
  19. }
  20. }
  21. }

 题目三:修改上面的程序,在Add方法中添加一个out参数z,并在Add方法中使用z记录x与y的相加结果;在Main方法中调用Add方法时,为其传入一个未赋值的实参变量z,最后输出实参变量z的值。

  1. using System;
  2. namespace zuoye93
  3. {
  4. class Program
  5. {
  6. static int Add(int x,int y,out int z)
  7. {
  8. z = x + y;
  9. x += y;
  10. return x;
  11. }
  12. static void Main(string[] args)
  13. {
  14. int z;
  15. int x = Add(100, 200,out z);
  16. Console.WriteLine("out用法z="+ z);
  17. }
  18. }
  19. }

 题目四: 定义一个Add方法,用来计算多个int类型数据的和。在具体定义时,将参数定义为int类型的一维数组,并指定为params参数;在Main方法中调用该方法,为该方法传入一个int类型的一维数组,并输出计算结果。

  1. using System;
  2. namespace zuoye94
  3. {
  4. class Program
  5. {
  6. static int Add(params int[] array)
  7. {
  8. int x = 0;
  9. for(int i=0;i<array.Length;i++)
  10. {
  11. x += array[i];
  12. }
  13. return x;
  14. }
  15. static void Main(string[] args)
  16. {
  17. int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
  18. Console.WriteLine("params用法计算的和为"+Add(x));
  19. }
  20. }
  21. }

题目: 创建一个控制台应用程序,定义一个静态Add方法,实现两个整型数相加,然后在Main方法中调用该静态方法。

  1. using System;
  2. namespace zuoye95
  3. {
  4. class Program
  5. {
  6. static int Add(int x, int y)
  7. {
  8. return x + y;
  9. }
  10. static void Main(string[] args)
  11. {
  12. int result = Add(100, 200);
  13. Console.WriteLine("静态方法和为" + result);
  14. }
  15. }
  16. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/105543
推荐阅读
相关标签
  

闽ICP备14008679号