Skip to content

Commit cf8db8e

Browse files
committed
fixes: console converter -> converter (shorted titles)
1 parent 1831b8a commit cf8db8e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/celsius-to-fahrenheit/celsius-to-fahrenheit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Problem: Console Converter – from °C Degrees to °F Degrees
1+
# Problem: Converter – from °C Degrees to °F Degrees
22

33
Write a program that reads **degrees on Celsius scale** \(°C\) and converts them to **degrees on Fahrenheit scale** \(°F\). Look on the Internet for a proper [formula](http://bfy.tw/MrFX "Search in Google") to do the calculations. Round the result to **2 digits after the decimal point**. Here are a few examples:
44

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/currency-converter/currency-converter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Problem: * Console Currency Converter
1+
# Problem: * Currency Converter
22

33
Write a program for **conversion of money from one currency into another**. It has to support the following currencies: **BGN, USD, EUR, GBP**. Use the following fixed currency rates:
44

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/radians-to-degrees/radians-to-degrees.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Problem: Console Converter – from Radians to Degrees
1+
# Problem: Converter – from Radians to Degrees
22

33
Write a program, that reads **an angle in** [**radians**](https://en.wikipedia.org/wiki/Radian) (`rad`) and converts it to [**degrees**](https://en.wikipedia.org/wiki/Degree_%28angle%29) (`deg`). Look for a proper formula on the Internet. The number **π** in C\# programs is available through `Math.PI`. Round the result to the nearest integer using the `Math.Round(…)` method.
44

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/usd-to-bgn/usd-to-bgn.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Problem: Console Converter – USD to BGN
1+
# Problem: Converter – USD to BGN
22

33
Write a program for **conversion of US dollars** \(USD\) **into Bulgarian levs** \(BGN\). **Round** the result to **2 digits** after the decimal point. Use a fixed rate between a **dollar** (USD) and **levs** (BGN): **1 USD = 1.79549 BGN**.
44

0 commit comments

Comments
 (0)