欢马劈雪 最近更新时间:2020-01-02 10:19:05
public class CountDown { public static void main(String[] args) {// 来自 时代Java公众号 - N o w J a v a . c o m for (int count = 10; count >= 1; count--) { System.out.println(count); } } }