首页 > 其他 > 详细

各数相加的思路、流程图、源代码及实现截图

时间:2015-09-27 00:01:47      阅读:337      评论:0      收藏:0      [点我收藏+]

1、大致思路:需要申请一个长度为n的动态数组,其中n为字符个数,然后循环输入,定义一个变量作为和,初始化为0,循环相加,最后输出。

 

2、流程图

3、源代码:技术分享

//2015.9.26 chengchongjing 多数字相加

 

import java.util.Scanner;

 

 public class mathplus {

 

  public static void main(String[] args) {  

 // TODO 自动生成的方法存根     

 Scanner scan= new Scanner(System.in);      

  int n;    

 System.out.println("请输入要相加的字符个数");   

   n = scan.nextInt();//输入要求和的淑的数量         

 double aArray[];     aArray = new double[n];//定义含n个双精度参数的数组     

    System.out.print("输入"+n);    

      System.out.println("个数字");     

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

  {      

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

       }//把输入的字符串转化成浮点型   

       double result = 0;   

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

    {   

   result +=aArray[i];

    }//循环相加     

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

    }

 

}

4、运行截图:

技术分享

 

各数相加的思路、流程图、源代码及实现截图

原文:http://www.cnblogs.com/3066405538a/p/4841533.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!