送给所有程序员的新年祝福&新年愿望

244 阅读1分钟

在这里插入图片描述
凛冬散尽,星河长明,新的一年,万事顺遂。

new Thread() {
                    int money = 2;
                    @Override
                    @SneakyThrows
                    public void run() {
                        while (true) {
                            sleep(1000);
                            System.out.println("every one ¥" + Math.pow(money, 2));
                        }
                    }
                }.start();