---
title: "pow (Opus Funktion)"
---
### Beschreibung

Berechnet Zahl A hoch B (A<sup>B</sup>).

### Argumente

| Name | Typ | Beschreibung |
| --- | --- | --- |
|  | [float](../../standard-datentypen/float.md) | Zahl A |
|  | [float](../../standard-datentypen/float.md) | Zahl B |

### Rückgabewert [float](../../standard-datentypen/float.md)

Resultat der Potenz A hoch B.

### Beispiel

```
Result = pow(2,3);
```

### Siehe auch

---
