package operator;
public class Project3 {
public static void main(String[] args) {
//++ -- 自增 自减 一元运算符
int a = 3;
int b = a++; //执行完b=a赋值后给再让a自增
//b = a a = a+1 (这一行相当于省去了)
int c = ++a;//执行c=a赋值前,先让a自增
//a = a+1 c = a
System.out.println(a);
System.out.println(b);
System.out.println(c);
//++在前先自增再赋值,++在后先赋值再自增
//幂运算 2^3 2*2*2 = 8 Math(数学类)像这样的很多运算我们会用工具来解决
double pow = Math.pow(2, 3); //2是底数3是指数
System.out.println(pow);
}
}