public class hello_world {
//psvn + tab
public static void main(String[] args){
String a = "Hello"; //
String b = "world"; //
String c = a+b; //
//sout + tab
System.out.println(c);
String username;
String userId;
int a=0;
double b=1;
boolean c=true;
System.out.println(a);
int a,b;
a=5;b=4;
if(a=b){
}else if(a<b){
}else{
}
String test01="A";
switch(test01){
case "A":
System.out.println("A");
break;
case "B":
System.out.println("B");
break;
case "C":
System.out.println("C");
break;
default:
System.out.println("都不匹配");
}
//变化的变量 判断语句 变化的条件
for (int i=0;i<10;i++){
//判断
//执行
//i++
}
int i=0;
while (i<10){
//执行的语句
i++;
}
}