Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Wie kann ich den Wert eine Varieblen dauerhaft verändern(+ - * / usw.)????
int myVar = 5; myVar = myVar + 10; // Erhöhe myVar um 10 (=15) und weise das Ergebnis weider an myVar zu // Abgekürzte Schreibweise: myVar += 10;
MfG SideWinder