zoukankan      html  css  js  c++  java
  • 随机数

    设计思路:生成随机数并将随机数分配到 char类型的数组中,再将char类型转换为int类型,计算并输出结果。

    源程序代码

    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 );

                        

                 

           }

    }

    结果截图:

  • 相关阅读:
    Elasticsearch核心技术与实战-学习笔记
    在ABP中灵活使用AutoMapper
    使用log4net记录ABP日志
    Abp小知识-如何全局设置DontWrapResult属性
    《C#并发编程经典实例》学习笔记—2.7 避免上下文延续
    NEST 6.X升级到7.X
    django框架——十
    django——自定义分页
    django框架九
    orm数据库查询优化和数据库三大设计范式
  • 原文地址:https://www.cnblogs.com/wanghao369/p/4928520.html
Copyright © 2011-2022 走看看