18 lines
422 B
TeX
18 lines
422 B
TeX
|
% master: mathematische_operationen.tex
|
||
|
% Mathematische Operationen v0.1
|
||
|
% 2011-06-08 (Rx)
|
||
|
|
||
|
%\subsection{Mathematische Operationen}
|
||
|
%-------------------------------------
|
||
|
|
||
|
\begin{verbatim}
|
||
|
c = a + b Addition
|
||
|
a++ ; a = a + 1
|
||
|
c = a - b Subtraktion
|
||
|
a-- ; a = a - 1
|
||
|
c = a * b Multiplikation
|
||
|
c = a / b Division
|
||
|
a = Math.round(b) Ganzzahlige Rundung
|
||
|
\end{verbatim}
|
||
|
|