随机数

随机数

设计思路:(1)生成随机数(2)将随机数分配到char数组(3)将char数组转换为int类,(4)将随机数添加进string类并计算

源程序代码

import java.util.Random;

import javax.swing.*;

public class Array1 {

       public static void main(String Args[])

       {

              int a[]=new int [10];

              int num = 0;

              String output="";

              for(int i=0;i<10;i++)

              {

                     a[i]=(int)(Math.random()*100);

              }

              for(int  element:a)

              {

                     output+=element+" ";

                  num+=element;

              }

                     JOptionPane.showMessageDialog( null,"随机数为"+output ,

                       "Initializing an Array with a Declaration",

                       JOptionPane.INFORMATION_MESSAGE );

                     JOptionPane.showMessageDialog( null,"和为"+num ,

                              "Initializing an Array with a Declaration",

                              JOptionPane.INFORMATION_MESSAGE );

                    

             

       }

}

结果截图

 

posted @ 2015-10-31 10:07  键盘已坏  阅读(139)  评论(0编辑  收藏  举报