Prime numbers Get link Facebook X Pinterest Email Other Apps June 01, 2025 Get link Facebook X Pinterest Email Other Apps Comments
Thread by extending thread June 01, 2025 class MyThread extends Thread { int n; MyThread(int n) { this.n = n; } public void run() { for (int i = 1; i <= n; i++) { System.out.println(i); } } public static void main(String[] args) { MyThread t = new MyThread(5); t.start(); } } Read more
Arithmetic exception June 01, 2025 public class ExceptionExample { public static void main(String[] args) { try { int a = 10 / 0; } catch (ArithmeticException e) { System.out.println("Arithmetic Exception occurred: " + e.getMessage()); } } } Read more
Comments
Post a Comment