Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static void sleepForDays(int day) {
        sleepForSomeTime(day * 24 * 60 * 60 * 1000);
    }

    public static void sleepForSomeTime(long time) {
        try {
            Thread.sleep(time);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}