LoginSignup
1
0

More than 3 years have passed since last update.

Javaソースコードの基本構造

Last updated at Posted at 2020-04-21

Javaソースコードの基本構造

public class Main {
// 以下クラスブロック
  public static void main(String[] args) {
  // 以下メソッドブロック
    System.out.println("Qiitaを更新します");
    System.out.println("タイトル:Javaソースコードの基本構造");
    System.out.println("お願い:間違っていたらコメントお願いします");
  }
}

クラスブロックと外側は、毎回ほとんど同じ。
メソッドブロックに、処理命令を記載する。

1
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
1
0