zoukankan      html  css  js  c++  java
  • 09.21,函数,累加求和

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace ConsoleApplication2
    {
        class Program
        {
    
    
            //主函数,void是没有返回值的意思
    
            //函数 凡是带括号的都是函数,当一个流程完全封闭,完整的时候,并且需要多次使用的时候采取写函数,
            //写在main函数外面,class函数里面 public,修饰符,形参可以不写,即括号内可以不写;
    
            //函数组成
          /*修饰符 返回值 函数名(形参1,形参2.....形参n)
           {
    //    }
    //*/
    //        public void dayin()
    //        { 
                
                
    //            Console.WriteLine("hello word"); 
    //        }
    
    
    //        static void Main(string[] args)
    //        {
    //            //  new Program().dayin();
    //            Console.ReadLine();
    //        }
    
            //函数  累加和
            public int leijia(int n)
            {
                int sum = 0;
                for (int i = 1; i <= n; i++)
                { sum += i;
                }
          return sum;
            }
    
    static void Main(string[] args)
            {
        int shuru =int .Parse (Console .ReadLine ());
        int jieguo = new Program().leijia(shuru);
    
                Console.WriteLine(jieguo );
    
    
                Console.ReadLine();
    
    
            }
        }
    }
  • 相关阅读:
    进程二
    高德地图api的使用
    《架构即未来》读后感3
    三周总结
    性能战术:
    二周总结
    《 架构即未来》读后感2
    一周总结
    《架构即未来》读后感
    学生信息系统dao层
  • 原文地址:https://www.cnblogs.com/cf924823/p/4825392.html
Copyright © 2011-2022 走看看