Perché Per il ciclo in java dà risultati diversi se mettiamo uno spazio nel istruzione di stampa e stampare la variabile

0

Domanda

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);
    }
}

Si prega di notare, Se mi tolgo lo spazio nell'istruzione print dà risultati diversi? qualsiasi indizio sarà di aiuto e apprezzato

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

Migliore risposta

-1

Questo è divertente. Si vede quando si mettere spazio l'uscita è come si desidera

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

Ma quando si rimuove lo spazio la risposta è ancora venuta a destra, ma è sempre entrato con il numero 2 nella dichiarazione ovvero

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 altre lingue

Questa pagina è in altre lingue

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