标签:style blog color 使用 ar 2014 div log sp
例如
//static void Add(ref int n) //static void Add(int n) static int Add(int n,out int p) { int m = n * 10; p = m; // Console.WriteLine("Add函数1:{0}", n); n = n + 10; //Console.WriteLine("Add函数2:{0}", n); return n; } static void Main(string[] args) { int a = 5; // Console.WriteLine("Main函数1:{0}", a); // Add(a); // Add(ref a); int b; a = Add(a,out b ); Console.WriteLine("a={0}b={1}", a, b); // Console.WriteLine("Main函数2:{0}", a);
递归,递归的特点就是自己调用自己;return 是将数值返回上一级
例如:
static int taozi(int day) { if (day == 10) { return 1; } int now=( taozi(day + 1)+1)*2; return now; } static void Main(string[] args) { //递归 int n = taozi(1); Console.WriteLine("公园里有{0}个桃子", n);
标签:style blog color 使用 ar 2014 div log sp
原文地址:http://www.cnblogs.com/jackjms/p/3949105.html