Printing out
One of the most essential skills in programming is displaying output. Whether you're debugging code, showing results to users, or just confirming your program works, you'll use print statements constantly. Let's practice this fundamental skill!
Bu egzersiz
Introduction to Java
kursunun bir parçasıdırEgzersiz talimatları
- Add the print method name after
System.out.to display text to the screen.
Uygulamalı interaktif egzersiz
Bu örnek kodu tamamlayarak bu egzersizi bitirin.
class WelcomeToJava {
public static void main(String[] args) {
// Add the print method
System.out.____("Welcome to Java!");
}
}