计算加减乘除
public class HelloWord {
public static void main(String[] args) {
System.out.println(5 + 6); // 11
System.out.println(5 - 6); // -1
System.out.println(5 * 6); // 30
System.out.println(5 / 6.0); // 0.8333333333333334
System.out.println(1 + 2 * 3 / 4.0 + (5 + 6) / 7.0); // 4.071428571428571
}
}
基本数据类型—— int
public class HelloWord {
public static void main(String[] args) {
int a = 1;
int b = 2;
int c = 3;
int x = 2;
int y = a * x + b * (x * x) + c * (x * x * x);
System.out.println(y);
}
}
int
用来表示一个整数,取值范围在 -2^31 ~2131-1。计算出来是 -2,147,483,648 ~ 2,147,483,647, 最大约21亿多。
关键字(key word)和标示符(Identifier)
关键字
public class static void int 都是关键字,关键字是Java语法的保留字,不能用来做变量名。
标示符:
在int a = 1;
中,a
是标示符。
由大小写英文字符,数字和下划线_组成的,区分大小写的,不以数字开头的文字.·可以用作Java中的各种东西的名字,比如类名,方法名等。
- 标示符是区分大小写的。