zoukankan      html  css  js  c++  java
  • 数学运算

        
    

    package com.hanqi;

           import java.util.Random;

             public class math {

             public static void main(String[] args) {

    //数学运算
        System.out.println("四舍五入="+Math.round(123.556));
        //取上限值       大于或等于 数值的最小整数
        System.out.println("取上限值"+Math.ceil(123.456));
        //取下限值        小于或等于数值的最大整数
        System.out.println("取下限值"+Math.floor(123.456));
        
        
        System.out .println("PI="+Math.PI );
        
        
    //随机数
        System.out.println("随机数="+Math.random());
        System.out.println("随机数="+Math.random());
        System.out.println("随机数="+Math.random());
        System.out.println("随机数="+Math.random());
        System.out.println("随机数="+Math.random());
        System.out.println();
        System.out.println();
        System.out.println();
        
        
        
        Random r=new Random();//用时间
        
        r.nextInt(100);
        
        
        System.out.println("随机数="+r.nextInt(100));
        System.out.println("随机数="+r.nextInt(100));
        System.out.println("随机数="+r.nextInt(100));
        System.out.println("随机数="+r.nextInt(100));
        System.out.println("随机数="+r.nextInt(100));
    
    
        System.out.println();
        System.out.println();
        System.out.println();
        
        
        r=new Random(1);//随机数种子
    
        
        System.out.println("随机数="+r.nextInt(100));
        System.out.println("随机数="+r.nextInt(100));
        System.out.println("随机数="+r.nextInt(100));
        System.out.println("随机数="+r.nextInt(100));
        System.out.println("随机数="+r.nextInt(100));
        }
        
    
    }
  • 相关阅读:
    一个统计代码行数的简单方法
    关于string的对象引用
    mysql连接的一些问题。
    linux环境初始化 用户问题
    php null o false ''
    php支付宝在线支付接口开发教程【转】
    模拟支付宝服务窗环境
    ctags
    校验全球电话号码 正确性 库 正则表达式
    php短路与 短路或
  • 原文地址:https://www.cnblogs.com/doubiqi/p/5052934.html
Copyright © 2011-2022 走看看