码迷,mamicode.com
首页 > 其他好文 > 详细

函数(方法)

时间:2015-08-13 06:22:20      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

 class hanshu
    {
        public void qiuhe(int n)
        {
            int sum = 0;
            for (int i = 0; i <= n; i++)
            {
                sum += i;

            }
            Console.Write("求和结果为"+sum);
        }
        static void Main(string[] args)
        {
            hanshu hs = new hanshu();
            Console.Write("输入数字:");
            int n = int.Parse(Console.ReadLine());
            hs.qiuhe(n);
            Console.ReadLine();
        }
    }
class Program
    {
        public string fanhuinihao()
        {
            return "你好";
        }
        static void Main(string[] args)
        {
            Program fh=new Program();
            string s = fh.fanhuinihao();
            Console.Write(s);
            Console.ReadLine();
        }
    }

 

函数(方法)

标签:

原文地址:http://www.cnblogs.com/liuyudong0825/p/4726005.html

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