随机数组相加

随机生成10个数,填充一个数组,然后用消息框显示数组内容,接着计算数组元素的和,将结果也显示在消息框中。

import javax.swing.*;

public class Sum {
public static void main(String args[])
{
String output= "10个666666以内的随机数为:\n";
int sum=0;
int a[]=new int [10];
for(int i=0;i<=9;i++)
{
a[i]=(int) (Math.random()*666666);
output += a[i] +",";
sum += a[i];
}
output +="\n十个数的和是:"+sum;

JOptionPane.showMessageDialog(null,output,"结果",JOptionPane.PLAIN_MESSAGE);
}
}

posted on 2015-11-01 16:04  丿唐小东  阅读(298)  评论(0编辑  收藏  举报

导航