赞
踩
题目一:定义一个Add方法,用来计算两个数的和,该方法中有两个形参,但在方法体中对其中的一个形参x执行加y操作,并返回x;在Main()方法中调用该方法,为该方法传入定义好的实参;最后分别显示调用Add方法计算之后的x值和实参y的值。
- using System;
-
- namespace zuoye91
- {
- class Program
- {
- static int Add(int x,int y)
- {
- x += y;
- return x;
- }
- static void Main(string[] args)
- {
- int y = 200;
- int x = Add(100, 200);
- Console.WriteLine("x="+ x);
- Console.WriteLine("y="+ y);
- }
- }
- }
题目二:修改上面的程序,将形参x定义为ref参数,再显示调用Add方法之后的实参x的值。
- using System;
-
- namespace zuoye92
- {
- class Program
- {
- static int Add(ref int x, ref int y)
- {
- x = 100;
- y = 200;
- x += y;
- return x;
- }
- static void Main(string[] args)
- {
- int x = 20;
- int y = 10;
- Add(ref x,ref y);
- Console.WriteLine("ref用法x=" + x);
- }
- }
- }
题目三:修改上面的程序,在Add方法中添加一个out参数z,并在Add方法中使用z记录x与y的相加结果;在Main方法中调用Add方法时,为其传入一个未赋值的实参变量z,最后输出实参变量z的值。
- using System;
-
- namespace zuoye93
- {
- class Program
- {
- static int Add(int x,int y,out int z)
- {
- z = x + y;
- x += y;
- return x;
- }
- static void Main(string[] args)
- {
- int z;
- int x = Add(100, 200,out z);
- Console.WriteLine("out用法z="+ z);
- }
- }
- }
题目四: 定义一个Add方法,用来计算多个int类型数据的和。在具体定义时,将参数定义为int类型的一维数组,并指定为params参数;在Main方法中调用该方法,为该方法传入一个int类型的一维数组,并输出计算结果。
- using System;
-
- namespace zuoye94
- {
- class Program
- {
- static int Add(params int[] array)
- {
- int x = 0;
- for(int i=0;i<array.Length;i++)
- {
- x += array[i];
- }
- return x;
- }
- static void Main(string[] args)
- {
- int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
- Console.WriteLine("params用法计算的和为"+Add(x));
- }
- }
- }
题目五: 创建一个控制台应用程序,定义一个静态Add方法,实现两个整型数相加,然后在Main方法中调用该静态方法。
- using System;
-
- namespace zuoye95
- {
- class Program
- {
- static int Add(int x, int y)
- {
- return x + y;
- }
- static void Main(string[] args)
- {
- int result = Add(100, 200);
- Console.WriteLine("静态方法和为" + result);
- }
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。