0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Java 文字列をコンソール画面に出力する方法

Posted at

文字列をコンソール画面に表示する命令

Javaで文字列をコンソール画面に表示する命令は2種類ある

//命令1
System.out.print("Hello World!");

//命令2
System.out.println("Hello World!");

命令1 System.out.print();

System.out.print(); を使用するとコンソールに表示した文字列の後に改行が入らない

//例:System.out.print(); で Hello World! を2つ表示する
System.out.print("Hello World!");
System.out.print("Hello World!");

実行結果は以下のようになる。

Hello World!Hello World!

命令2 System.out.println();

System.out.println(); を使用するとコンソールに表示した文字列の後に改行が入る

//例:System.out.println(); で Hello World! を2つ表示する
System.out.println("Hello World!");
System.out.println("Hello World!");

実行結果は以下のようになる。

Hello World!
Hello World!

まとめ

  • Javaで文字列をコンソールに表示する命令はSystem.out.print(); と System.out.println();の2種類ある
  • 2つの違いは文字列の後に改行が入るか入らないか
  • System.out.print(); は改行が入らない
  • System.out.println(); は改行が入る
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?