namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:lib:abs

abs()

#include <cstdlib>
#include <cmath>

int abs (int zahl) 

Liefert den Absolutbetrag von zahl.

Parameter

zahl Ganzzahlwert

Ergebnis

Rückgabewert: zahl für zahl>=0, sonst -zahl.

Siehe auch

Beispiel

abs.cpp
#include <cstdlib>
#include <iostream>
 
int main()
{
  int i = -12345;
  std::cout << "Betrag von " << i << " = " << std::abs(i) << '\n';
}
kennen/lib/abs.txt · Zuletzt geändert: 2019-11-20 14:59 von 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki