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

                        

                 

           }

    }

    结果截图:

  • 相关阅读:
    windows 共享文件夹 给 mac
    给mac配置adb 路径
    关于android 加载https网页的问题
    http tcp udp ip 间的关系
    手机服务器微架构设计和实现专题
    添加ssh key
    本人对于线程池的理解和实践
    使用Android Butterknife
    记一次失败的笔试(华为研发工程师-汽水瓶笔试题)
    简易坦克大战python版
  • 原文地址:https://www.cnblogs.com/wanghao369/p/4928520.html
Copyright © 2011-2022 走看看