① java編程:我想在一個java類里的一個for循環中加入一個睡眠,睡眠時間5分鍾,該怎麼編碼
public static void main(String[] args) {
for(int i = 0; i < 300; i++){
try {
Thread.sleep(1000);//睡眠1秒。循環300次就是300秒也就是五分鍾
System.out.println(i);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}