"ஏய், அமிகோ!"

"ஹலோ, கேப்டன் அணில்!"

"நிலையை முடித்ததற்கு வாழ்த்துகள். நீங்கள் மேலே செல்லும் முன், இந்த குறியீட்டு பணிகளை முடிக்க மறக்காதீர்கள்."

3
பணி
Java Syntax,  நிலை 9பாடம் 11
பூட்டப்பட்டது
Dividing by zero
Maybe you've been wanting this for a long time, but you were afraid? Drum roll, please! Today we will divide by zero! You actually can do it, if you're careful. Create a public static void divideByZero method that divides any number by zero, and display the result of division. Wrap the method call in a try-catch block and display the exception's stack trace.
3
பணி
Java Syntax,  நிலை 9பாடம் 11
பூட்டப்பட்டது
Countdown
Students at the secret CodeGym center were given a task to assess their skills: write a countdown from 10 to 0 to determine how much time is left before the end of this test. Cool, huh? To create a delay, you need to use Thread.sleep(100), and wrap the sleep call in a try-catch block. Time's up!
6
பணி
Java Syntax,  நிலை 9பாடம் 11
பூட்டப்பட்டது
Method in a try-catch
Each of you at least once in your life has probably entered a password or other text incorrectly. Let's protect a program from accidentally entering "incorrect" data. In this task, the user enters numbers from the keyboard. If he or she enters something else, then an exception-catching method should be triggered and display all previously entered numbers.