请用C#编写程序:定义一个类,类中有方法能够完成两个数的互换,并编写完整程序。

比较急,请详细一些,谢谢了!... 比较急,请详细一些,谢谢了! 展开
 我来答
内裤最大功能
推荐于2017-09-07 · TA获得超过3105个赞
知道大有可为答主
回答量:3202
采纳率:79%
帮助的人:488万
展开全部
创建一个控制台项目,把代码全复制进去替换。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Security.AccessControl;

namespace ConsoleApplication1
{
    public static class C
    {
        public static void Change(ref int n1,ref int n2)
        {
            int num = n1;
            n1 = n2;
            n2 = num;
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            int a = 10, b = 20;
            C.Change(ref a,ref b);
            Console.WriteLine("调用Change函数后,a值为:{0}。b值为{1}", a, b);
            Console.Read();
        }
    }
}
慢慢么么
2015-06-09 · TA获得超过428个赞
知道小有建树答主
回答量:374
采纳率:0%
帮助的人:227万
展开全部
  using System;
  using System.Collections.Generic;
  using System.Text;

  namespace ChangeData
  {
  class Program
  {
  static void Main(string[] args)
  {
  Console.WriteLine("请输入第一个数");
  int a = Convert.ToInt32(Console.ReadLine());
  Console.WriteLine("请输入第二个数");
  int b = Convert.ToInt32(Console.ReadLine());
  Console.WriteLine("您输入的a={0},b={1}",a,b);
  switchData(ref a,ref b);
  Console.WriteLine("转换后a={0},b={1}", a, b);
  Console.WriteLine("输入任何字符退出");
  Console.ReadKey();
  }
  static void switchData(ref int a, ref int b)
  {
  int temp;
  temp = a;
  a = b;
  b = temp;
  }
  }
  }
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
handangaoyang
2015-06-09 · TA获得超过2242个赞
知道大有可为答主
回答量:2633
采纳率:88%
帮助的人:914万
展开全部
问题不是很清楚,就是简单的交换?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式