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 PowerOfNumberTwo | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int randomNumder; | |
| int power = 1; |
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 Multiples | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int multipleLowerNumber = 10; | |
| int multipleUpperNumber = 25; |
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) | |
| { | |
| string password = "qwerty"; | |
| string userInputPassword; |
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 NameOutput | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string userName; | |
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 CurrencyConverter | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| const string CommandExchangeRubToUsd = "1"; | |
| const string CommandExchangeUsdToRub = "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 ConsoleMenu | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| const string CommandshowTextFirst = "1"; | |
| const string CommandshowTextSecond = "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 SumOfNumbers | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int number; | |
| int sum = 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 Subsequence | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int firstNumber = 5; | |
| int lastNumber = 103; |
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 OutputControl | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string userInput; | |
| string commandExit = "exit"; |
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 Cycles | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string userMessege; | |
| int repetitions; |
NewerOlder