C#基础学习笔记(七)

C#基础学习笔记(七)

一、 方法的调用问题

  • 在方法中定义的变量称为局部变量,其作用域从定义开始,到其所在的大括号结束为止.
  • 在一个方法中想要访问另一个方法中的变量,怎么办?
  • 两种解决方法:参数和返回值
  • 我们在Main()函数中,调用Test()函数,我们管Main()函数称之为调用者,管Test()函数称之为被调用者。

1. 如果被调用者想要得到调用者的值:

  • 传递参数。
  • 使用静态字段来模拟全局变量。

2. 如果调用者想要得到被调用者的值:

  • 返回值。(要有人接收)

方法中的return语句:

导致函数立即返回。在返回值为void的函数中return,在返回值非void的函数中return值

class Program
{
    //字段 属于类的字段
    public static int _number = 10;
    static void Main(string[] args)
    {
        //int b = 10;
        int a = 3;
        //Test(a); //传递参数 输出的值是3,因为没有返回值
        //需要一个变量去接收返回的值
        int res = Test(a);
        Console.WriteLine(res);
        //Console.WriteLine(_number);
        Console.ReadKey();
            
    }
    public static int Test(int a)   //传递参数。
    {
        a = a + 5;
        return a;
        //Console.WriteLine(_number);
    }
    public  static void TestTwo()
    {
        //Console.WriteLine(_number);
    }
}

示例:写一个方法,判断一个年份是否是润年,和最大值

class Program
{
    static void Main(string[] args)
    {
        #region 判断闰年
        写一个方法,判断一个年份是否是润年。
        //bool b = IsRun(2020);
        //Console.WriteLine(b); 
        #endregion

        #region 最大值
        比较两个数字的大小,返回最大值
        int a1 = 10;
        int a2 = 20;
        //int max = GetMax(10, 20);//实参
        //Console.WriteLine(max);
        //Console.ReadKey(); 
        #endregion

    }

    /// <summary>
    /// 判断一个年份是否是润年
    /// </summary>
    /// <param name="year">要判断的年份</param>
    /// <returns>是否是润年</returns>
    public static bool IsRun(int year)
    {
        bool b = (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0);
        return b;
    }

    /// <sum比较两个数字的大小,返回最大值mary>
    /// 
    /// </summary>
    /// <param name="n1">第一个数</param>
    /// <param name="n2">第二个数</param>
    /// <returns>返回的最大值</returns>
    public static int GetMax(int n1,int n2)//形参
    {
        int max = n1 > n2 ? n1 : n2;
        return max;
    }
}

不管是实参还是形参,都是在内存中开辟了空间的。

方法的功能一定要单一。

GetMax(int n1,int n2) 

方法中最忌讳的就是出现提示用户输入的字眼。

练习:

  1. 读取输入的整数,定义成方法,多次调用(如果用户输入的是数字,则返回,否则提示用户重新输入)

  2. 还记得学循环时做的那道题吗?只允许用户输入y或n,请改成方法

  3. 计算输入数组的和:int Sum(int[] values)

class Program
{
    static void Main(string[] args)
    {
        #region 只返回输入的数字
        //读取输入的整数,定义成方法,
        //多次调用(如果用户输入的是数字,则返回,否则提示用户重新输入)
        //NewMethod();
        //Console.ReadKey();
        Console.WriteLine("请输入一个数字");
        string input = Console.ReadLine();
        int number = GetNumber(input);
        Console.WriteLine(number);
        Console.ReadKey();
        #endregion

        #region 只返回yes或者no
        //还记得学循环时做的那道题吗?只允许用户输入y或n,请改成方法
        //这个方法做了什么?
        //只能让用户输入yes或者no,只要不是,就重新输入(循环)
        //要拿到输入的yes或者no
        Console.WriteLine("请输入yes或者no");
        string str = Console.ReadLine();
        string result = IsYesOrNo(str);
        Console.WriteLine(result);
        Console.ReadKey();
        #endregion

        //计算输入数组的和:int Sum(int[] values)
        int[] nums = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
        int sum = GetSum(nums);
        Console.WriteLine(sum);
        Console.ReadKey();
    }

    方法的功能一定要单一!!!!!这样写是错误的
    private static void NewMethod()
    {
        while (true)
        {
            Console.WriteLine("请输入一个数字");
            try
            {
                int number = Convert.ToInt32(Console.ReadLine());
                Console.WriteLine(number);
                break;

            }
            catch
            {
                Console.WriteLine("输入错误");
            }
        }
    }

    /// <summary>
    /// 获取输入的数字
    /// </summary>
    /// <param name="s">任意输入的东西</param>
    /// <returns>返回输入的数字</returns>
    public static int GetNumber(string s)
    {
        while (true)
        {
            try
            {
                int number = Convert.ToInt32(s);
                return number;
            }
            catch//这样不行 catch执行完成之后程序返回try 是死循环
            {
                Console.WriteLine("请重新输入");
                s = Console.ReadLine();//把s重新赋值
            }
        }
    }

    /// <summary>
    /// 只能让用户输入yes或者no,并且返回
    /// </summary>
    /// <param name="input">用户的输入</param>
    /// <returns>返回yes或者no</returns>
    public static string IsYesOrNo(string input)
    {
        while (true)
        {
            if (input == "yes" || input == "no") 
            {
                return input;
            }
            else
            {
                Console.WriteLine("只能输入yes或者no,请重新输入");
                input = Console.ReadLine();
            }
        }
    }

    /// <summary>
    /// 整数类型数组的总和
    /// </summary>
    /// <param name="nums">要求的数组和</param>
    /// <returns>返回这个数组的和</returns>
    public static int GetSum(int[] nums)
    {
        int sum = 0;
        for (int i = 0; i < nums.Length; i++)
        {
            sum += nums[i];
        }
        return sum;
    }
}

二、 out、ref、params

1.out参数。

  • 如果你在一个方法中,返回多个相同类型的值的时候,可以考虑返回一个数组。但是,如果返回多个不同类型的值的时候,返回数组就不行了,那么这个时候,我们可以考虑使用out参数。
  • out参数就侧重于在一个方法中可以返回多个不同类型的值。

示例:

class Program
{
    static void Main(string[] args)
    {
        #region 一般方法
        //写一个方法 求一个数组中的最大值、最小值、总和、平均值
        int[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
        //将要返回的4个值,放到一个数组中返回
        int[] res = GetMaxMinSumAvg(numbers);
        Console.WriteLine("最大值是{0},最小值是{1},总和是{2},平均值是{3}", res[0], res[1], res[2], res[3]);
        Console.ReadKey();
        #endregion

        #region out方法
        int max = 0;//可以不一样max1,可以不用赋初值因为下面返回了
        int min = 0;
        int sum = 0;
        int avg = 0;
        bool b;
        string s;
        double d;
        Test(numbers, out max, out min, out sum, out avg,out b,out s,out d);
        Console.WriteLine("最大值是{0},最小值是{1},总和是{2},平均值是{3}", max, min, sum, avg);
        Console.WriteLine(b);
        Console.WriteLine(s);
        Console.WriteLine(d);
        Console.ReadKey(); 
        #endregion
    }
    /// <summary>
    /// 求一个数组中的最大值、最小值、总和、平均值
    /// </summary>
    /// <param name="nums">所求数组</param>
    /// <returns>返回最大值、最小值、总和、平均值</returns>
    public static int[] GetMaxMinSumAvg(int[] nums)
    {
        int[] res = new int[4];
        //假设res[0] 最大值 res[1] 最小值 res[2] 总和 res[3]平均值
        res[0] = nums[0];//amx
        res[1] = nums[0];//min
        res[2] = 0;
        //但是当返回的不是同一类的数据时,这时需要out
        string name = "孙权";
        bool b = true;
        for (int i = 0; i < nums.Length; i++)
        {
            //当前循环到的值比我假定的的最大值还要大 赋值下一个
            if (nums[i] > res[0])
            {
                //把循环到的元素赋值给我的最大值
                res[0] = nums[i];
            }
            if (nums[i] < res[1])
            {
                res[1] = nums[i];
            }
            res[2] += nums[i];
        }
        //平均值
        res[3] = res[2] / nums.Length;
        return res;
    }

    /// <summary>
    /// 求一个数组中的最大值、最小值、总和、平均值
    /// </summary>
    /// <param name="nums">要求的数组</param>
    /// <param name="max">多余返回的最大值</param>
    /// <param name="min">多余返回的最小值</param>
    /// <param name="sum">多余返回的总和</param>
    /// <param name="avg">多余返回的平均值</param>
    public static void Test(int[] nums,out int max,out int min,out int sum,out int avg,out bool b,out string s,out double d)
    {
        //out参数要求在方法的内部必须为其赋值
        max = nums[0];
        min = nums[1];
        sum = 0;
        for (int i = 0; i < nums.Length; i++)
        {
            if (nums[i] > max)
            {
                max = nums[i];
            }
            if (nums[i] < min)
            {
                min = nums[i];
            }
            sum += nums[i];
        }
        avg = sum / nums.Length;
        b = true;
        s = "小刚";
        d = 3.14;
    }
}

2.ref参数

能够将一个变量带入一个方法中进行改变,改变完成后,再讲改变后的值带出方法。

ref参数要求在方法外必须为其赋值,而方法内可以不赋值。

示例:

class Program
{
    static void Main(string[] args)
    {
        double salary = 5000;
        //这样显示5000,因为没有返回值
        //如果要产生作用,需要返回值还要有值来存,很麻烦
        //想要一种方法可以在方法中改变变量,并且在外边也随之改变ref
        JiangJin(ref salary);//这样就可以了
        Console.WriteLine(salary);
        Console.ReadKey();
    }
    public static void JiangJin(ref double s)
    {
        s += 500;
    }
    public static void Fakuan(double s)
    {
        s -= 500;
    }
}

练习:

class Program
{
    static void Main(string[] args)
    {
        //使用方法来交换两个int类型变量
        //out要在方法的内部赋值
        //ref必须要在方法的外部赋值
        int n1 = 10;
        int n2 = 20;
        //int temp = n1;
        //n1 = n2;
        //n2 = temp;
        Test(ref n1, ref n2);
        Console.WriteLine(n1);
        Console.WriteLine(n2);
        Console.ReadKey();
        n1 = n1 - n2;//10-20=-10 20
        n2 = n1 + n2;//-10 10
        n1 = n2 - n1;//20 10
        //封装方法
    }
    public static void Test(ref int n1, ref int n2)
    {
        int temp = n1;
        n1 = n2;
        n2 = temp;
    }
}

3.params可变参数

将实参列表中跟可变参数数组类型一致的元素都当做数组的元素去处理。

params可变参数必须是形参列表中的最后一个元素。

class Program
{
    static void Main(string[] args)
    {
        #region 示例
        在程序设计中设置的变量是越少越好
        希望可以Test("张三", 99, 88, 77);但是这样不行
        这时添加params就可以了
        所以params就可以把这些数字处理成数组中的元素
        int[] s = { 99, 88, 77 };
        Test("张三", 99, 88, 77, 55);
        Console.ReadKey();
        #endregion
 
        //求任意长度数组的和(整数类型的)
        //int[] nums = { 1, 2, 3, 4, 5 };
        int sums = GetSum(1, 2, 3, 4, 5, 6, 7, 8, 9);
        Console.WriteLine(sums);
        Console.ReadKey();
    }
    public static void Test(string name, int id, params int[] score)
    {
        //注意params必须是形参中的最后一个,所以要添加id时放在它前面
        //同样params有唯一性,只能有一个
        int sum = 0;
        for (int i = 0; i < score.Length; i++)
        {
            sum += score[i];
        }
        Console.WriteLine("{0}这次的考试总分是{1},学号是{2}", name, sum, id);
    }
 
    public static int GetSum(params int[] n)
    {
        int sum = 0;
        for (int i = 0; i < n.Length; i++)
        {
            sum += n[i];
        }
        return sum;
    }
}

三、方法的重载

概念:方法的重载指的就是方法的名称相同给,但是参数不同。

参数不同,分为两种情况

1)、如果参数的个数相同,那么参数的类型就不能相同。

2)、如果参数的类型相同,那么参数的个数就不能相同。

***方法的重载跟返回值没有关系。

class Program
{
   static void Main(string[] args)
   {
       //一下的都是要完成加法
       //我们想要用一个方法,可以填四个不同类型的参数M()
       //这四个函数构成了重载
       Console.WriteLine(1);
       Console.WriteLine(1.4);
       Console.WriteLine(true);
       Console.WriteLine('c');
   }
   //前两个数量相同,类型就不同
   public static void M(int n1, int n2)
   {
       int result = n1 + n2;
   }
   //方法的重载跟返回值没有关系
   //public static int M(int a1, int a2)
   //{
   //    return a1 + a2;
   //}
   public static double M(double d1, double d2)
   {
       return d1 + d2;
   }
   //和第一个就是类型相同,数量不同
   public static void M(int n1,int n2,int n3)
   {
       int result = n1 + n2 + n3;
   }
   public static string M(string s1,string s2)
   {
       return s1 + s2;
   }
}

四、方法的递归

方法自己调用自己。

找出一个文件夹中所有的文件。

class Program
{
    static void Main(string[] args)
    {
        //会死在这个递归里边
        //更换成从外面穿i进来也会变成0
        //想个办法让i方法里边不管怎么执行都不会影响i的值,想起静态字段
        //TellStory(0);
        TellStory();
        Console.ReadKey();
    }
    //静态字段
    public static int i = 0;
    public static void TellStory()
    {
        //这样每次都变成0
        //int i = 0;
        Console.WriteLine("从前有座山");
        Console.WriteLine("山里有座庙");
        Console.WriteLine("庙里有个老和尚和小和尚");
        Console.WriteLine("有一天,小和尚哭了,老和尚给小和尚讲了个故事");
        i++;
        if (i >= 10)
        {
            //程序到这里不是直接出去的,还在TellStory();和最后一个}之间来回10次
            //这是因为递归是类似走们的过程,程序执行的时候递归就像从A点穿过了10道
            //门到了B,返回的时候还是按原路穿过10道门返回A。
            return;
        }
        TellStory();
    }
}

五、方法练习

1、提示用户输入两个数字 计算这两个数字之间所有整数的和

1)用户只能输入数字

2)计算两个数字之间和

3)要求第一个数字必须比第二个数字小 就重新输入

class Program
{
    static void Main(string[] args)
    {
        //提示用户输入两个数字 计算这两个数字之间所有整数的和
        //1、用户只能输入数字
        //2、计算两个数字之间和
        //3、要求第一个数字必须比第二个数字小 就重新输入
        Console.WriteLine("请输入第一个数字");
        string strNumberOne = Console.ReadLine();
        //调用转int的方法
        int numberOne = GetNumber(strNumberOne);
        Console.WriteLine("请输入第二个数字");
        string strNumberTwo = Console.ReadLine();
        int numberTwo = GetNumber(strNumberTwo);
        //判断第一个数字是否小于第二个数字
        JudgeNumber(ref numberOne,ref numberTwo);
        //求和
        int sum = GetSum(numberOne, numberTwo);
        Console.WriteLine(sum);
        Console.ReadKey();
    }
    public static int GetNumber(string s)
    {
        while (true)
        {
            try
            {
                //会错误try
                int number = Convert.ToInt32(s);
                return number;
            }
            catch
            {
                Console.WriteLine("输入有误!!!请重新输入");
                s = Console.ReadLine();
            }
        }
    }
    public static void JudgeNumber(ref int n1,ref int n2)
    {
        //在方法里边改变的值不会影响外面的
        //JudgeNumber(numberOne, numberTwo);的值
        //如果想吧这两个值带到方法里边进行改变,再把处理好的值带到外面,这是用ref
        while (true)
        {
            if (n1 < n2)
            {
                //符合题意
                return;
            }
            else
            {
                //输入还可能输入错误用while
                Console.WriteLine("第一个数字不能大于或者等于第二个数字,请重新输入第一个数字");
                string s1 = Console.ReadLine();
                //调用转整型
                n1 = GetNumber(s1);
                Console.WriteLine("请重新输入第二个数字");
                string s2 = Console.ReadLine();
                n2 = GetNumber(s2);
            } 
        }
    }
    public static int GetSum(int n1, int n2)
    {
        int sum = 0;
        //计算这两个数字之间所有整数的和
        for (int i = n1; i <=n2 ; i++)
        {
            sum += i;
        }
        return sum;
    }
}

2、用方法来实现:有一个字符串数组:{ “马龙”, “迈克尔乔丹”, “雷吉米勒”, “蒂姆邓肯”, “科比布莱恩特” },请输出最长的字符串。

class Program
{
    static void Main(string[] args)
    {
        //2、用方法来实现:有一个字符串数组:
        //{ "马龙", "迈克尔乔丹", "雷吉米勒", "蒂姆邓肯", "科比布莱恩特" },
        //请输出最长的字符串。
        string[] names = { "马龙", "迈克尔乔丹", "雷吉米勒", "蒂姆邓肯", "科比布莱恩特" };
        string max = GetLongest(names);
        Console.WriteLine(max);
        Console.ReadKey();
    }
    /// <summary>
    /// 求一个字符串数组中最长元素
    /// </summary>
    /// <param name="s"></param>
    /// <returns></returns>
    public static string GetLongest(string[] s)
    {
        string max = s[0];
        for (int i = 0; i < s.Length; i++)
        {
            if (s[i].Length > max.Length)
            {
                max = s[i];
            }
        }
        return max;
    }
}

3、用方法来实现:请计算出一个整型数组的平均值。

class Program
{
    static void Main(string[] args)
    {
        //用方法来实现:请计算出一个整型数组的平均值。
        int[] numbers = { 1, 2, 7 };
        double avg = GetAvg(numbers);
        //保留两位小数 真正的 四舍五入
        string s = avg.ToString("0.00");
        avg = Convert.ToDouble(s);
        但是只是输出的时候保留,并没有真正保留
        //Console.WriteLine("{0:0.00}", avg); 
        Console.WriteLine(avg);
        Console.ReadKey();
    }
    public static double GetAvg(int[] nums)
    {
        double sum = 0;
        for (int i = 0; i < nums.Length; i++)
        {
            sum += nums[i];
        }
        return sum / nums.Length;
    }
}

4、写一个方法,用来判断用户输入的数字是不是质数 再写一个方法 要求用户只能输入数字 输入有误就一直让用户输入数字

class Program
{
    static void Main(string[] args)
    {
        while (true)
        {
            //写一个方法,用来判断用户输入的数字是不是质数
            //再写一个方法 要求用户只能输入数字 输入有误就一直让用户输入数字
            Console.WriteLine("请输入一个数字,我们将判断你输入的数字是否是质数");
            string strNumber = Console.ReadLine();
            int number = GetNumber(strNumber);
            bool b = IsPrime(number);
            Console.WriteLine(b);
            Console.ReadKey(); 
        }
    }
    public static int GetNumber(string strNumber)
    {
        while (true)
        {
            try
            {
                int number = Convert.ToInt32(strNumber);
                return number;
            }
            catch
            {
                Console.WriteLine("请重新输入");
                strNumber = Console.ReadLine();
            }
        }
    }
    public static bool IsPrime(int number)
    {
        if (number < 2)
        {
            return false;
        }
        else
        {
            //判断质数
            //让这个数字从2开始除,除到自身的前一位
            //这个for循环是给不是质数的数准备的
            for (int i = 2; i < number; i++)
            {
                if (number % i == 0)
                {
                    return false;
                }
                所以不能有这个,返回是质数的要写在外边
                //else
                //{
                //    return true;
                //}
            }
            //给质数准备的
            return true;
        }
    }
}

5、接受输入后判断其等级并显示出来。判断依据如下:等级={优 (90~100分);良 (80~89分);中 (60~69分);差 (0~59分);}

class Program
{
    static void Main(string[] args)
    {
        //接受输入后判断其等级并显示出来。判断依据如下:等级 ={
        //优 (90~100分);良 (80~89分);中 (60~69分);差 (0~59分);}
        Console.WriteLine("请输入考试成绩");
        int score = Convert.ToInt32(Console.ReadLine());
        string level = GetLevel(score);
        Console.WriteLine(level);
        Console.ReadKey();
    }
    public static string GetLevel(int score)
    {
        string level = "";
        //如果用switch则要把得分转成整数
        switch (score/10)
        {
            case 10:
            case 9: level = "优";
                break;
            case 8:level = "良";
                break;
            case 7:level = "中";
                break;
            case 6:level = "差";
                break;   
            default:level = "不及格";
                break;
        }
        return level;
    }
}

6、请将字符串数组{ “中国”, “美国”, “巴西”, “澳大利亚”, “加拿大” }中的内容反转

class Program
{
    static void Main(string[] args)
    {
        //请将字符串数组{ "中国", "美国", "巴西", "澳大利亚", "加拿大" }
        //中的内容反转
        string[] names = { "中国", "美国", "巴西", "澳大利亚", "加拿大" };
        //别这么做,写循环
        //Array.Reverse(names);
        //循环反转数组 反转/2次
        Test(names);
        for (int i = 0; i < names.Length; i++)
        {
            Console.WriteLine(names[i]);
        }
        Console.ReadKey();   
    }
    //记住数组特殊 方法不要返回
    public static void Test(string[] names)
    {
        for (int i = 0; i < names.Length / 2; i++)
        {
            string temp = names[i];
            names[i] = names[names.Length - 1 - i];
            names[names.Length - 1 - i] = temp;
        }
        //可以改成没有返回值的
        //return names;
    }
}

7、写一个方法 计算圆的面积和周长 面积是 pI * R * R 周长是 2* Pi * r

class Program
{
    static void Main(string[] args)
    {
        //写一个方法 计算圆的面积和周长  面积是 pI*R*R  周长是 2*Pi*r
        //可以用out来传参回来
        double r = 5;
        double Perimeter;
        double area;
        GetPerimeterArea(r, out Perimeter, out area);
        Console.WriteLine(Perimeter);
        Console.WriteLine(area);
        Console.ReadKey();
    }
    public static void GetPerimeterArea(double r,out double Perimeter,out double area)
    {
        Perimeter = 3 * 3.14 * r;
        area = 3.14 * r * r;
    }
}

8、计算任意多个数间的最大值(提示:params)。

class Program
{
    static void Main(string[] args)
    {
        //计算任意多个数间的最大值(提示:params)
        int sum = GetSum(1, 2, 3, 4, 5, 6, 7, 8, 9);
        Console.WriteLine(sum);
        Console.ReadKey();
    }
    public static int GetSum(params int[] nums)
    {
        int sum = 0;
        for (int i = 0; i < nums.Length; i++)
        {
            sum += nums[i];
        }
        return sum;
    }
}

9、请通过冒泡排序法对整数数组{ 1, 3, 5, 7, 90, 2, 4, 6, 8, 10 }实现升序排序。

class Program
{
    static void Main(string[] args)
    {
        //请通过冒泡排序法对整数数组{ 1, 3, 5, 7, 90, 2, 4, 6, 8, 10 }
        //实现升序排序。
        int[] nums = { 1, 3, 5, 7, 90, 2, 4, 6, 8, 10 };
        Change(nums);
        for (int i = 0; i < nums.Length; i++)
        {
            Console.WriteLine(nums[i]);
        }
        Console.ReadKey();
    }
    public static void Change(int[] nums)
    {
        for (int i = 0; i < nums.Length-1; i++)
        {
            for (int j = 0; j < nums.Length - 1; j++)
            {
                if (nums[j] > nums[j + 1]) 
                {
                    int temp = nums[j];
                    nums[j] = nums[j + 1];
                    nums[j + 1] = temp;
                }
            }
        }
    }
}

10、将一个字符串数组输出为|分割的形式,比如“梅西|卡卡|郑大世”(用方法来实现此功能)

class Program
{
    static void Main(string[] args)
    {
        //将一个字符串数组输出为|分割的形式,
        //比如“梅西|卡卡|郑大世”(用方法来实现此功能)
        string[] names = { "梅西", "卡卡", "郑大世" };
        string str = ProcessString(names);
        Console.WriteLine(str);
        Console.ReadKey();
    }
    public static string ProcessString(string[] names)
    {
        string str = null;
        //少循环一次最后加上
        for (int i = 0; i < names.Length - 1; i++) 
        {
            str += names[i] + "|";
        }
        return str + names[names.Length - 1];
    }
}
  • 0
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
1. 声明两个变量:int n1 = 10, n2 = 20;要求将两个变量交换,最后输出n1为20,n2为10。扩展(*):不使用第三个变量如何交换? 2. 用方法来实现:将上题封装一个方法来做,方法有两个参数分别为num1,num2,将num1与num2交换。提示:方法有两个参数n1,n2,在方法中将n1与n2进行交换,使用ref。(*) 3. 请用户输入一个字符串,计算字符串中的字符个数,并输出。 4. 用方法来实现:计算两个数的最大值。思考:方法的参数?返回值?扩展(*):计算任意多个数间的最大值(提示:使用可变参数,params)。 5. 用方法来实现:计算1-100之间的所有整数的和。 6. 用方法来实现:计算1-100之间的所有奇数的和。 7. 用方法来实现:判断一个给定的整数是否为“质数”。 8. 用方法来实现:计算1-100之间的所有质数(素数)的和。 9. 用方法来实现:有一个整数数组:{ 1, 3, 5, 7, 90, 2, 4, 6, 8, 10 },找出其中最大值,并输出。不能调用数组的Max()方法。 10. 用方法来实现:有一个字符串数组:{ "马龙", "迈克尔乔丹", "雷吉米勒", "蒂姆邓肯", "科比布莱恩特" },请输出最长的字符串。 11. 用方法来实现:请计算出一个整型数组的平均值。{ 1, 3, 5, 7, 90, 2, 4, 6, 8, 10 }。要求:计算结果如果有小数,则显示小数点后两位(四舍五入)。Math.Round() 12. 请通过冒泡排序法对整数数组{ 1, 3, 5, 7, 90, 2, 4, 6, 8, 10 }实现升序排序。 13. 有如下字符串:【"患者:“大夫,我咳嗽得很重。” 大夫:“你多大年记?” 患者:“十五岁。” 大夫:“二十岁咳嗽吗”患者:“不咳嗽。” 大夫:“四十岁时咳嗽吗?” 患者:“也不咳嗽。” 大夫:“那现在不咳嗽,还要等到什么时咳嗽?”"】。需求:①请统计出该字符中“咳嗽”二字的出现次数,以及每次“咳嗽”出现的索引位置。②扩展(*):统计出每个字符的出现次数。 14. 将字符串" hello world,你 好 世界 ! "两端空格去掉,并且将其中的所有其他空格都替换成一个空格,输出结果为:"hello world,你 好 世界 !"。 15. 制作一个控制台小程序。要求:用户可以在控制台录入每个学生的姓名,当用户输入quit(不区分大小写)时,程序停止接受用户的输入,并且显示出用户输入的学生的个数,以及每个学生的姓名。效果如图:

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值