Java基础08:自增自减运算符、初识Math类
- a++表示先赋值后自增(a--同理)
- ++a表示先自增后赋值(--a同理)
- 幂运算代码:Math.pow(底数,指数)
- 代码部分:
package operator;
public class Demo04 {
public static void main(String[] args) {
//++ -- 自增,自减 一元运算符(只要一个数)
int a = 3 ;
int b = a++;//执行完这行代码后,先给b赋值,再自增
//a = a + 1;
System.out.println(a);
//a++ a = a + 1;
int c = ++a;//执行完这行代码前,先自增,再给C赋值;
System.out.println(a);
System.out.println(b);
System.out.println(c);
//幂运算 2^3 2*2*2 = 8 很多运算会用一些工具类来操作
double pow = Math.pow(3,2);
System.out.println(pow);
}
}