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

                        

                 

           }

    }

    结果截图:

  • 相关阅读:
    php 快速fork出指定个子进程
    批量 kill mysql 中运行时间长的sql
    socket 发送发送HTTP请求
    Qt学习笔记常用容器
    Qt学习笔记 TableWidget使用说明和增删改操作的实现
    Qt学习笔记 线程(一)
    Qt学习笔记 QMessageBox
    Qt 学习笔记 TreeWidget 增删改
    Qt Creator 常用快捷键
    Qt学习笔记 ListWidget的增删改
  • 原文地址:https://www.cnblogs.com/wanghao369/p/4928520.html
Copyright © 2011-2022 走看看