美文网首页
编程第三天的日常

编程第三天的日常

作者: 一条有科研精神的程序狗 | 来源:发表于2016-12-24 13:46 被阅读0次

    运算符

    赋值运算符

    = :
    a=b <--->a=ab;
    a -= b<--->a=a-b;

    算术运算符

    + - × / %

    比较运算符

    < > <= >= == !=
    注:比较运算的结果是布尔值

    逻辑运算符

    && 且
    || 或
    ! 非

    练习代码

    已经半径求圆的周长和面积。

    import java.util.Scanner;

    public class roll {
    public static void main(String[] args) {
    final double PI=3.14; // final 声明常量
    Scanner input = new Scanner(System.in);
    System.out.print("R = ");
    double r = input.nextDouble();
    input.close();
    System.out.println(" S = " + rrPI);
    System.out.print(" L = " + 2rPI);

    }
    

    }

    相关文章

      网友评论

          本文标题:编程第三天的日常

          本文链接:https://www.haomeiwen.com/subject/zxhzmttx.html