18 lines
539 B
TeX
18 lines
539 B
TeX
|
% 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}
|
||
|
|