This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace BossFightLearn | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| const string CommandNormalAttack = "1"; | |
| const string CommandFireballAttack = "2"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace PowerTwoLearn | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Random random = new Random(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace MultiplesOfNumbers | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Random random = new Random(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace ProgramPasswordProtected | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int passwordEntryAttempts = 3; | |
| string password = "123456"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace NameOutputLearn | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int amountSymbols = 0; | |
| string addingLines = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace CurrencyConverterLearn | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| const string ConverterRubToUsd = "1"; | |
| const string ConverterRubToEur = "2"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace SumNumber | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int minNumber = 0; | |
| int maxNumber = 101; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace ExitControl | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int number = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace ExitControl | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int startNumber = 10; | |
| int incrementNumber = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace ConsoleMenuLearn | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Random random = new Random(); |