zl程序教程

您现在的位置是:首页 >  其他

当前栏目

2022年的1024程序员节

程序员 2022 1024
2023-09-11 14:22:30 时间

来个经典的你好世界庆祝🎉一下~

public class demo1 {
    public static void main(String[] args) {
        SimpleDateFormat sdf= new SimpleDateFormat("yyyy_MM_dd");
        System.out.println(sdf.format(System.currentTimeMillis()));

        System.out.println("Hello World!");

    }
}

在这里插入图片描述