package com.test;
public class Test {
public static void main(String[] args) throws InterruptedException {
for(int i=5;i>0;i++){
Thread.sleep(1000);
System.out.println("Hallo Word");
}
相关分类