//final修饰符,前后都可
//变量命名原则
类名:首字母大写和驼峰原则
类成员变量monthSalary,局部变量,方法名runRun():首字母小写和驼峰原则
常量MAX_VALUE,大写字母和下划线
double pow=Math.pow(3,2);//222
//字符串连接符+
int a=10,b=20;
System.out.println(""+a+b);//1020,""为string类型,后面a+b也变成了string类型
System.out.println(a+b+"");//30
//条件运算符?:
int score=50;
String type=score<60?"不及格":“及格”;
System.out.println(type);
标签:int,pow,Day01,System,首字母,println,out From: https://www.cnblogs.com/zhouna1022/p/16890420.html