We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Java Exception Handling (Try-catch)
Java Exception Handling (Try-catch)
Sort by
recency
|
334 Discussions
|
Please Login in order to post a comment
public class Solution {
}
why cant we take input before the try block?
sc.nextInt() is used to read integers from the input. However, if the user enters something that is not an integer (e.g., a letter, a decimal number, or a string), sc.nextInt() will throw an InputMismatchException.so that's why we are using inside the try block.
import java.io.; import java.util.; import java.text.; import java.math.; import java.util.regex.*;
public class Solution {
}