linux.txt/programmieren/java/arithmetische_zuweisungsoperatoren.tex

18 lines
539 B
TeX
Raw Normal View History

2025-02-15 15:39:11 +01:00
% master: arithmetische_zuweisungsoperatoren.tex
% Arithmetische Zuweisungsoperatoren v0.1
% 2011-06-08 (Rx)
\subsection{Arithmetische Zuweisungsoperatoren}
%----------------------------------------------
\begin{verbatim}
Operator Beispiel Bedeutung
-------- -------- ---------
+= x += 3; x = x + 3;
-= x -= 3; x = x - 3;
*= x *= 3; x = x * 3;
/= x /= 3; x = x / 3;
%= x %= 3; x = x % 3;
\end{verbatim}