0
0

More than 3 years have passed since last update.

HelloWorldについて

Last updated at Posted at 2021-06-08

HelloWorldの実行について

①プロジェクトの作成
②パッケージの作成
③クラスの作成 ※public static void main(String[] args) にチェックを入れる
④コードの入力

package test1;

public class Test1 {

    public static void main(String[] args) {
        // TODO 自動生成されたメソッド・スタブ
        System.out.println("Hello World");
    }

}

⑤実行

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0