运算符
赋值运算符
= :
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);
}
}
网友评论