mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-05 22:35:36 +00:00
Initial commit
This commit is contained in:
parent
e523533d17
commit
10cceacca6
50 changed files with 1280 additions and 0 deletions
20
vs4win/Chapter04/WritingFunctions/Program.cs
Normal file
20
vs4win/Chapter04/WritingFunctions/Program.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
TimesTable(7);
|
||||
|
||||
TimesTable(7, 20);
|
||||
|
||||
TimesTable(number: 7, size: 10);
|
||||
*/
|
||||
|
||||
/*
|
||||
decimal taxToPay = CalculateTax(amount: 149, twoLetterRegionCode: "FR");
|
||||
WriteLine($"You must pay {taxToPay} in tax.");
|
||||
*/
|
||||
|
||||
//RunCardinalToOrdinal();
|
||||
|
||||
//RunFactorial();
|
||||
|
||||
//RunFibImperative();
|
||||
|
||||
RunFibFunctional();
|
||||
Loading…
Add table
Add a link
Reference in a new issue