zoukankan      html  css  js  c++  java
  • 7.7_java学习_02

    1.学习内容

    (1)

    //in 用于 读键盘输入的内容

    Scanner in =new Scanner(System.in);

    (2) 

    //运算符的优先级

    // System.out.println("echo"+in.nextLine());//字符串相加

    // System.out.println("2+3="+(2+3));//显示2+3=5

    // System.out.println("2+3="+2+3);//显示2+3=23

    (3) 

    //基本的包裹类型
    // int i=10;
    // Integer k=10;
    // System.out.println(Integer.MAX_VALUE);//显示整数的最大值
    // System.out.println(Integer.MIN_VALUE);//显示整数的最小值
    // System.out.println(Character.isDigit('a'));//显示是不是数字 false
    // System.out.println(Character.isDigit('1'));//true
    // System.out.println(Math.abs(-100));//计算绝对值
    // System.out.println(Math.round(13.456));//取整四舍五入
    // System.out.println(Math.random());//产生0到1之间的随机数
    // System.out.println(Math.pow(2, 3.4));//计算第一个的参数的次方(第二个数字)

    2.遇到的问题

    3.明天内容

    函数

  • 相关阅读:
    卡特兰数
    hdu 1023 Train Problem II
    hdu 1022 Train Problem
    hdu 1021 Fibonacci Again 找规律
    java大数模板
    gcd
    object dection资源
    Rich feature hierarchies for accurate object detection and semantic segmentation(RCNN)
    softmax sigmoid
    凸优化
  • 原文地址:https://www.cnblogs.com/blog-wangke/p/13262650.html
Copyright © 2011-2022 走看看