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

n个数求和 (下雨堵车没及时发表)

时间:2017-10-08 16:55:06      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:定义   result   logs   image   http   相加   can   out   static   

流程图

技术分享

 

源代码

mport java.util.Scanner;

public class Test

{

    public static void main(String[] args)

    {

        Scanner sc = new Scanner(System.in);

        int n;

        System.out.println("请输入需要几个数字:");

        n=sc.nextInt(); //输入数量

        double[] m;

        m = new double[n];//定义n个双精度参数

        System.out.print("请输入"+n+"个数字");

        for(int i=0;i<m.length;i++)

        {

            m[i]=sc.nextInt();//输入n个求和的数

        }

        double result=0;

        for(int i=0;i<m.length;i++)

        {

            result += m[i];

        }

        

        System.out.println("相加结果为:"+ result);

    }

}

结果

技术分享

 

n个数求和 (下雨堵车没及时发表)

标签:定义   result   logs   image   http   相加   can   out   static   

原文地址:http://www.cnblogs.com/edithfinch/p/7637743.html

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