欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

20190613 java小练习

程序员文章站 2024-03-23 21:31:58
...
public class MyTest {
    public static void printresult() {
        int age = 0;
        age += 1;
        System.out.print("age is" + age);
    }

    public static void main(String[] args) {
        MyTest a = new MyTest();
        a.printresult();
    }
}