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

Anhalteweg #4

Open
CSchoel opened this issue Mar 22, 2022 · 2 comments
Open

Anhalteweg #4

CSchoel opened this issue Mar 22, 2022 · 2 comments

Comments

@CSchoel
Copy link
Owner

CSchoel commented Mar 22, 2022

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.

@CSchoel
Copy link
Owner Author

CSchoel commented Mar 22, 2022

#import

@github-actions
Copy link

Hi, I am Porty, your friendly import bot. 👋 I have created the branch import#4 for you! 💪

See you at the corresponding pull request: #5. 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant