क्यों पाश के लिए जावा में पूरी तरह से अलग परिणाम डाल दिया, तो हम एक अंतरिक्ष में प्रिंट बयान और फिर प्रिंट चर

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

कृपया ध्यान दें, अगर मैं दूर अंतरिक्ष में प्रिंट बयान में यह देता है, अलग अलग परिणाम? किसी भी सुराग में मदद मिलेगी और सराहना की

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

सबसे अच्छा जवाब

-1

यह एक अजीब एक है. आप देखते हैं जब आप अंतरिक्ष के उत्पादन के रूप में आप चाहते हैं

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

लेकिन जब आप दूर अंतरिक्ष जवाब अभी भी है आ रहा है सही है, लेकिन यह है हो रही के साथ शामिल हो गए नंबर 2 में बयान यानी

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

अन्य भाषाओं में

यह पृष्ठ अन्य भाषाओं में है

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

इस श्रेणी में लोकप्रिय

लोकप्रिय सवाल इस श्रेणी में