Simplify story and increase difficulty

Conversion between Celsius and Fahrenheit should be understandable to
most. Inverting the formula is still not very hard, but a little harder
than only multiplying by 100.
This commit is contained in:
Remo Senekowitsch
2026-05-15 10:41:35 +02:00
parent db5ad7f42f
commit 360344ab6c
3 changed files with 64 additions and 60 deletions
+2 -3
View File
@@ -1171,9 +1171,8 @@ Use the `as` operator to cast one of the operands in the last line of the
name = "conversions2"
dir = "23_conversions"
hint = """
Implement From<FairyCredit> for GnomeCoin. Check the documentation of `From` to
learn about its required items:
https://doc.rust-lang.org/std/convert/trait.From.html"""
For the conversion from Fahrenheit to Celsius, you have to determine the formula
yourself. Don't forget the order of operations!"""
[[exercises]]
name = "conversions3"