diff --git a/exercises/converting_decimals_to_percents.html b/exercises/converting_decimals_to_percents.html index 3c602abe5..98960649b 100644 --- a/exercises/converting_decimals_to_percents.html +++ b/exercises/converting_decimals_to_percents.html @@ -15,7 +15,7 @@
Express the decimal as a percent.
DECIMAL
PERCENT
+DECIMAL
Rewrite the decimal as a fraction with a denominator of 100.
diff --git a/exercises/empirical_rule.html b/exercises/empirical_rule.html index a12a5d9b5..4f7a790fe 100644 --- a/exercises/empirical_rule.html +++ b/exercises/empirical_rule.html @@ -51,7 +51,7 @@roundTo( 1, MEAN + STDDEV * Z )
years.
- We can try to estimate using the empirical rule, also known as the 68-95-99.7 percent rule.
@@ -396,7 +396,7 @@roundTo( 1, MEAN + STDDEV * Z1 )
and roundTo( 1, MEAN + STDDEV * Z2 )
years.
- @@ -408,7 +408,7 @@ If both fire their cannons at the same time, what is the probability that QUESTION?
-diff --git a/exercises/percentage_word_problems_1.html b/exercises/percentage_word_problems_1.html index 0355f1cc1..1dd246fae 100644 --- a/exercises/percentage_word_problems_1.html +++ b/exercises/percentage_word_problems_1.html @@ -42,7 +42,7 @@
person(1) has BANK_MORE dollars in the bank today. Yesterday, he(1) had BANK_FEWER dollars in the bank. By what percentage did person(1)'s bank account increase over the past day? (Round your answer to the nearest hundredth of a percent.)
-round(((BANK_MORE - BANK_FEWER) * 10000) / BANK_FEWER) / 100
+roundTo(4, (BANK_MORE - BANK_FEWER) / BANK_FEWER)
The bank account grew by BANK_MORE - BANK_FEWER = BANK_MORE - BANK_FEWER
dollars
\frac{BANK_MORE - BANK_FEWER}{BANK_FEWER} \approx round(((BANK_MORE - BANK_FEWER) * 10000) / BANK_FEWER) / 100\%
person(1) has BANK_FEWER dollars in the bank today. Yesterday, he(1) had BANK_MORE dollars in the bank. By what percentage did person(1)'s bank account decrease over the past day? (Round your answer to the nearest hundredth of a percent.)
-round(((BANK_MORE - BANK_FEWER) * 10000) / BANK_MORE) / 100
+roundTo(4, (BANK_MORE - BANK_FEWER) / BANK_MORE)
The bank account decreased by BANK_MORE - BANK_FEWER = BANK_MORE - BANK_FEWER
dollars
\frac{BANK_MORE - BANK_FEWER}{BANK_MORE} \approx round(((BANK_MORE - BANK_FEWER) * 10000) / BANK_MORE) / 100\%