Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 618 Bytes

File metadata and controls

32 lines (20 loc) · 618 Bytes

Title


Image here:
sd

Chapter 1

Description

  • "string 1" + "string 2" will be "string 1string 2", but we missed space

Code

Some code:

System.out.println(0);

We say to program:

Please, print number 0 to the Console.

JDK method String.format

  • String.format("Name %s", "Max") will be Name Max

Internal course Links

  • Internal link to Example 1 %20 - space

External Links