LoginSignup
0
0

More than 5 years have passed since last update.

「宿題-01」九九を表示するプログラムを書いてください。

Last updated at Posted at 2015-07-12

JAVA Classの生成

① 新規Classファイルを作成する。

image

② srcを右クリック → 新規 → Class

image

③ パッケージ名:homework 名前:Kuku

image

image

【宿題-01】九九を表示するプログラムを書いてください。

Kuku.java
package homework;

public class Kuku {
    public static void main(String[] args) {
        System.out.println("九九表示プログラム");
    }
}

【結果】

image

0
0
2

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