第一次成果 1

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++;
        }
    }
上一篇:【测试开发】十三、接口测试-接口定义功能-前端-实现动态增删表单


下一篇:让div获取焦点