MulaiMulai sekarang secara gratis

Fill in the class

In Java, classes are the fundamental building blocks that organize your code. Think of them as containers that hold related functionality together. Every Java program you write will use at least one class!

Latihan ini adalah bagian dari kursus

Introduction to Java

Lihat Kursus

Petunjuk latihan

  • Create a class called HelloClass.

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

// Create a class called HelloClass
____ ____ {
    public static void main(String[] args) {
        System.out.println("I can do classes in Java now!");
    }
}
Edit dan Jalankan Kode