码迷,mamicode.com
首页 > Windows程序 > 详细

C#函数(EduCoder实训题目)

时间:2020-06-15 15:32:16      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:col   subject   temp   task   tput   一个   original   static   coder   

第1关:写一个函数

技术图片
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace G1
{
    class Program
    {
        static void Main(string[] args)
        {
            string myWords = Hello();
            Console.WriteLine(myWords);
        }

        /********** Begin *********/
        static string Hello()
        {
            return "Hello World, this is my function!";
        }
        /********** End *********/

    }
}
View Code

第2关:迭代函数

技术图片
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace G2
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] a = { 3, 4, 33, 2, 121, 34, 65, 34 };
            int size = a.Length - 1;
            int result = Max(a, size);
            Console.WriteLine(result);
        }

        /********** Begin *********/
         static int Max(int[] array, int i)
        {
            int temp;
            if (i == 0)
            {
                return array[0];
            }
            else
            {
                temp = Max(array, i - 1);
                if (temp > array[i])
                {
                    return temp;
                }
                else
                {
                    return array[i];
                }
            }
        }
        /********** End *********/
    }
}
View Code

第3关:变量的作用域

技术图片
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace G3
{
    class Program
    {

        static void Main(string[] args)
        {
            outputDiscount();
        }
        /********** Begin *********/
        static int originalPrice = 100;
        static float discount = 0.73F;
        static void outputDiscount()
        {
            Console.WriteLine("After discounting, the price is " + originalPrice * discount);
        }
        /********** End *********/

    }
}
View Code

第4关:引用参数和值参数

技术图片
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace G4
{
    class Program
    {
        static void Main(string[] args)
        {
            int totalPrice = 100; ;
            /********** Begin *********/
            int originalPrice = 100;
            float discount = 0.73F;
            /********** End *********/

            outputDiscount(originalPrice, discount, ref totalPrice);
            Console.WriteLine("main totalPrice is " + totalPrice);
        }
        /********** Begin *********/
        static void outputDiscount(int orgPrice, float dis,ref int total)
        {
            total = (int)(orgPrice * dis);
            Console.WriteLine("After discounting, the price is " + total);
        }
        /********** End *********/
    }
}
View Code

C#函数(EduCoder实训题目)

标签:col   subject   temp   task   tput   一个   original   static   coder   

原文地址:https://www.cnblogs.com/QQ1723545340/p/13131139.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!