Throws keywords

PHOTO EMBED

Thu Jan 18 2024 06:39:35 GMT+0000 (Coordinated Universal Time)

Saved by @E23CSEU1151 #java

class F
{
    public static void main(String[] args) throws InterruptedException
    {
        for(int i=1;i<=10;i++)
        {
            System.out.println(i);
            Thread.sleep(1000);
        }
    }
}
content_copyCOPY