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; | |
namespace ConsoleApp8 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string[] array1 = new string[] { "1", "2", "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 ConsoleApp8 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string numbersSeparator = " "; |
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 ConsoleApp8 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const char Separator = ' '; |
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 ConsoleApp8 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string NumbersSeparator = " "; |
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 ConsoleApp8 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string numbersSeparator = " "; |
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 task13 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string input = "()()()(())"; | |
int maxDepth = 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 task13 | |
{ | |
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 task13 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int inputNumber; | |
int minNumber = 100; |
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 HomeWorkAgain | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Random random = new Random(); | |
int maxValue = 100; |
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; | |
class Program | |
{ | |
static void Main (string[] args) | |
{ | |
uint yearOfBirth = 2222; | |
uint yearOfDeath = 2111; | |
uint temp; | |