package test.main;

import java.io.IOException;

import test.mypac.Wait;

public class MainClass01 {
        public static void main(String[] args) throws IOException {
                int second = 1000; //일시정지할 초 지정
                int sec60 = 60;

                Wait wait = new Wait();
                Cls cls =  new Cls();
                
                for(int i=0;i<=sec60;i++ ){
                        System.out.println(i+" 초");
                        wait.Iwait(second);
                        Runtime.getRuntime().exec("cls");
                }
        }
        
        
}