标签:
设计思路:
先随机生成10个数,组成一个数组,然后用消息框显示数组内容,然后用循环计算数组元素的和,将结果也显示在消息框中。
程序流程图:
源程序代码:
import javax.swing.*;
public class Plus
{
public static void main( String args[] )
{
int[] Array=new int[10];
String output="";
int s=0;
for(int i=0;i<10;i++)
{
Array[i]=(int)(Math.random()*10+1);
s=s+Array[i];
output+=Array[i]+" ";
}
output+="\n"+"和为:"+s;
JOptionPane.showMessageDialog(null, output,"输出",JOptionPane.INFORMATION_MESSAGE);
System.exit( 0 );
}
}
结果截图:
标签:
原文地址:http://www.cnblogs.com/amiee/p/4924417.html