码迷,mamicode.com
首页 > 编程语言 > 详细

随机数组相加

时间:2015-11-01 16:29:31      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

随机生成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);
}
}

技术分享

随机数组相加

标签:

原文地址:http://www.cnblogs.com/tangjindong/p/4928021.html

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