0
Por que system.out.println(14++) es 14 y no 15
3 Antworten
0
x = ++14
System.out.println(x);
15
y=14++
System.out.println(y)
14
In the first example the value of x is first increased and then printed. In the second example y is first printed and then increased.
0
ok. entiendo, pero eso significa que entre los paréntesis de system.out.print solo imprime el primer término? y también significa que entre los paréntesis se puede colocar una operación matemática?
0
Sorry I just know some basics of Spanish. I do not understand all.