using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("input a number:");
int a = Convert.ToInt32(Console .ReadLine ());//输入一个数
Console.WriteLine("input a number:");
int b = Convert.ToInt32(Console .ReadLine ());//输入另一个数
swap(ref  a, ref  b);//调用swap()交换函数
Console.WriteLine("{0},{1}", a, b);
Console.ReadKey();
}
static void swap(ref int a,ref  int b)//ref :引用,不加ref,只能值传递
{
writeline函数
int temp;
temp = a;
a = b;
b = temp;
}
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。