• 随机数


    随机数

    设计思路:(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 );

                        

                 

           }

    }

    结果截图

  • 相关阅读:
    模式识别: 线性分类器
    Graph Cuts学习笔记2014.5.16----1
    图像处理程序框架—MFC相关知识点
    图像处理程序框架—MFC相关知识点
    【ML】人脸识别
    【视觉】两个赞的开发文档
    【调研】在总体为n的情况下,多少样本有代表性?
    【ubuntu】upload files
    【git】git pull
    【spark】with mongodb
  • 原文地址:https://www.cnblogs.com/zuhaoran/p/4925044.html
Copyright © 2020-2023  润新知