Why For loop in java gives different results if we put a space in the print statement and then print the variable

0

public class Countingtable {
    public static void main(String[] args) {
        // write a program to count/increase a number by 2 everytime.
        int number1;
        for (number1 = 2; number1 <= 20; number1++)
            System.out.println("this number is a multiple of 2  " + number1);
    }
}

Please note, If I remove the space in the print statement it gives different results? any clue will help and appreciated

System.out.println("this number is a multiple of 2" + number1);
java
2021-11-24 06:52:27
1

-1

This one is funny one. You see when you put space the output is as you wish

This number is multiple of 2 2
This number is multiple of 2 3
This number is multiple of 2 4

But when you remove the space the answer is still coming right but it is getting joined with the number 2 in the statement i.e.

This number is multiple of 22 -- here 2 is from the statement and the next one is from answer
This number is multiple of 23 -- here 2 is from the statement and the next one is from answer
This number is multiple of 23 -- here 2 is from the statement and the next one is from answer
2021-11-24 07:02:48

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................