public class Exsrc01{ public static void main(String args []){ }} boolean true falsechar 2字节float 4字节double 8字节byte 1字节 -128~127short 2字节 -2^15~-2^15-1int 4字节 -2^31~-2^31-1long 8字节 -2^63~-2^63-1 注意0是int型
布尔逻辑运算(boolean)只能用true和false来表示,不能用0和非0表示,或者空和非空表示;
驼峰命名法变量名为有意义的英文;变量名只有一个单词则为全小写;变量名为多个单词变量名出第一个单词外首字母大写;
环境变量是系统所需的变量;Path(外部文件搜索路径)是windos用来查找应用程序的目录。(主要查找外部文件);ClassPath(内部文件搜索路径)
public class Test01{ public static void main(String arge[]){ int score=90; if(score>85 && score<=100){ System.out.println("成绩为优");} else if(score>75 && score<=85){ System.out.println("成绩为良");} else if(score>60 && score<=75){ System.out.println("成绩为中");} else if(score<=60 && score>=0){ System.out.println("成绩为差");} else if(score>100 || score<0){ System.out.println("成绩不在正常的范围之内");}}}}石头剪子布char play1="a";char play2="b";if(play1= "a" && play2="a"){ System.out.println("打平")}else if(play1="a" && play2="b"){ System.out.println("player1贏")}
sdfdsfdsfsf