Simple Java Program (Jan. 2024)

Поділитися
Вставка
  • Опубліковано 1 січ 2024
  • We're going to write a simple Java program with the following lines, in IntelliJ. Note the shortcuts for main and sout.
    package eecs1021;
    public class MyFirstClass {
    public static void main(String[] args) {
    System.out.println("Hello. This is a simple Java program.");
    ;
    }
    }

КОМЕНТАРІ •