1,979
社区成员
发帖
与我相关
我的任务
分享
using System;
class Program
{
static void swap( ref int m,ref int n)
{
int temp=m;
m = n;
n=temp;
}
static void Main()
{
int i=1,j=2;
Program.swap(ref i,ref j);
Console.WriteLine("{0},{1})",i,j);
}
}