Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Import: Anhalteweg #5

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions exercises/2022/CSchoel/004_Anhalteweg/exercise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
author:
- "Christopher Sch\xF6lzel"
- Porty[bot]
id: d870d860-2496-4a7c-990b-6feafc658bf1
keywords:
- language: java
- major: computer science
- institution: Technische Hochschule Mittelhessen
- semester: '2'
- course: Algorithmen und Datenstrukturen
- teaches: was
- teaches: java
- teaches: math
- teaches: pow
- teaches: text
lang: de-DE
solution-size: 15
title: Anhalteweg
---
## Aufgabe 03 - Anhalteweg

In der Fahrschule lernt man die folgende Faustformel für den Anhalteweg (Reaktionsweg + Bremsweg):

$$
\frac{\text{Tachowert} \cdot 3}{10} + \frac{\text{Tachowert}^2}{100}
$$

Schreibe einen Java-Ausdruck, der diese Rechnung umsetzt.

*Tipps:*
* *$x^2$ lässt sich als* `x * x` *schreiben, oder man verwendet die power-Funktion* `Math.pow(x,2)`*.*
* `7 / 3` *ist in Java etwas anderes als* `7.0 / 3`*. Probiere aus, was hier passiert und achte bei deiner Lösung darauf, dass du immer das richtige Ergebnis bekommst.*

**Test: Bei einer Geschwindigkeit von 51 km/h sollte der Anhalteweg 41,31m betragen.**