cs11dotnet7/vs4win/Chapter04/WritingFunctions/Program.cs

20 lines
294 B
C#
Raw Normal View History

2022-02-19 19:56:52 +00:00
/*
TimesTable(7);
TimesTable(7, 20);
TimesTable(number: 7, size: 10);
*/
/*
decimal taxToPay = CalculateTax(amount: 149, twoLetterRegionCode: "FR");
WriteLine($"You must pay {taxToPay} in tax.");
*/
2022-09-18 11:16:18 +01:00
//RunCardinalToOrdinal();
2022-02-19 19:56:52 +00:00
2022-09-18 11:16:18 +01:00
RunFactorial();
2022-02-19 19:56:52 +00:00
//RunFibImperative();
2022-03-22 18:44:45 +00:00
//RunFibFunctional();