Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
You are viewing an older revision! See the latest version
Aufgabe EVA
Berechne folgende Formel:
c = a/(b*b)
Verwende folgende Vorlage: New Code
enter input (stdin): 65 1.7 stdout: Das Ergebnis ist: 22.49134948096886
Anmerkung:
- zuerst die Deklaration der Variablen mit dem richtigen Datentype zu erfolgen hat,
- dann das Einlesen; auf richtige Formatspezifizierer achten und das & nicht vergessen)
- Verarbeitung mit Berechnung der Formel: c = a/(b*b)
- Ausgabe mit den richtige Formatspezifizieren.
Fragen:
- Was wird hier berechnet?