变量

public class TestVariable {
    public static void main(String[] args) {
        int age;
        age=18;
        int salary=3000;
        int gao=12;
        System.out.println(gao);
        
    }

}
原文地址:https://www.cnblogs.com/long-holiday/p/10096426.html