linux.txt/programmieren/javascript/mathematische_operationen.tex
2025-02-15 15:39:11 +01:00

17 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}