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

    import java.lang.Math;
    public class Answer1
    {
    public static 
    void main(String[] args) throws Exception
        {
            
    int num[]=new int[100];
            
    int i,max,min;  
            int j=0;
            
    for (i=0;i<100 ;i++ )
            {
                  num[i]
    =(int)(100*Math.random());
                  System.out.println(
    "num["+i+"]="+num[i]);
             }  
                max=num[0]; 
            
    for (i=0;i<100 ;i++ )
            {  

               
     if (num[i]>max)
                {
                    max
    =num[i];
                }
            }
            System.out.println(
    "this time the max number is "+ max);
            min=num[0];
                for (i=0;i<100 ;i++ )
            {  

               
     if (num[i]<min)
                {
                    min
    =num[i];
                }
            }
            System.out.println(
    " the min number is "+ min);
         
       for (i=0;i<100 ;i++ )
            {  

               
     if (num[i]>50)
                {
                    j++;

                }
            }
            System.out.println(
    "there is "+j+ "larger than 50");
         }
    }
  • 相关阅读:
    .net core 认证与授权(三)
    .net core 认证与授权(二)
    .net core 认证与授权(一)
    算法常识——快速排序
    ip 在网络传输中是如何传递的
    打开c++ 项目遇到的错误
    算法常识——鸡尾酒排序
    算法常识——冒泡排序
    算法常识——排序汇
    Tomcat 生产服务器性能优化
  • 原文地址:https://www.cnblogs.com/moonson/p/87433.html
Copyright © 2011-2022 走看看