My program has an endless loop, when I use try and catch block in a while loop.
import java.util.*; class Try { public
You did not break the loop. To end the loop you need to insert
break;
wherever you would like the loop to end.