zoukankan      html  css  js  c++  java
  • System类和Math类

    System类
    常用方法
    public class Demo01 { public static void main(String[] args) { for(int i=0;i<10;i++){ if(i==5){ //System.exit(0);//运行终止 } System.out.println(i); } //获取系统所有属性信息 System.out.println(System.getProperties()); //数组复制 int[] src={1,2,3,4}; int[] dest=new int[5];//复制到长度为5的新数组 System.arraycopy(src, 1, dest, 1, 3);//复制老数组的下标元素 到新数组的位置 个数 for(int i=0;i<dest.length;i++){ System.out.println(dest[i]);//02340 } method01(); } public static void method01(){ //验证for循环打印数字1-9999所需要使用的时间(毫秒) long before=System.currentTimeMillis(); for(int i=1;i<10000;i++){ System.out.println(i); } long after=System.currentTimeMillis(); System.out.println(after-before); } } Math类
    常用方法
    public class Demo02 { public static void main(String[] args) { //向上取整 System.out.println(Math.ceil(2.1));//3.0 //向下取整 System.out.println(Math.floor(2.6));//2.0 //取次幂 System.out.println(Math.pow(2, 10));//2的十次方 1024.0 //取随机数 System.out.println(Math.random());//取>=0,<1的随机数 //四舍五入 System.out.println(Math.round(1.4));//1 System.out.println(Math.round(1.5));//2 } }
  • 相关阅读:
    Easy Climb UVA
    POJ 2823 滑动窗口 单调队列模板
    Feel Good
    Problem J. Joseph’s Problem 约瑟夫问题--余数之和
    hdu 1029 Ignatius and the Princess IV
    poj 1027 Ignatius and the Princess II全排列
    Problem C Updating a Dictionary
    hdu 1412 {A}+{B}
    hdu 4006 The kth great number
    实现:职工管理系统
  • 原文地址:https://www.cnblogs.com/zhaotao11/p/10219030.html
Copyright © 2011-2022 走看看