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; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace TenVariables | |
| { | |
| internal class Program | |
| { |
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; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace WorkingWithStrings | |
| { | |
| internal class Program | |
| { |
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 Pictures | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int totalPictures = 52; | |
| int picturesInRow = 3; |
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 PermutationOfValues | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string name = "Иванов"; | |
| string lastName = "Иван"; |
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; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Security.Policy; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace CrystalStore | |
| { | |
| internal class Program |
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 Clinic | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int timePerPatient = 10; | |
| int minutesInAnHour = 60; |
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; |
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 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 SumOfNumbers | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int number; | |
| int sum = 0; |
OlderNewer