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
namespace DynamicArray | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandSum = "sum"; | |
const string CommandExit = "exit"; | |
int[] numbers = []; |
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 Array | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int minValue = 0; | |
int maxValue = 20; |
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
namespace Array | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int[,] givenNumbers = new int[10, 10]; | |
int minValue = 0; | |
int maxValue = 20; | |
int biggestNumber = int.MinValue; |
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 Array | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int summ = 0; | |
int product = 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 Array | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
int summ = 0; | |
int product = 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 Fight | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandNormalAttack = "1"; | |
const string CommandFireball = "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 Power | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
Random randomNumber = 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 Multiples | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
Random randomNumber = 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 Password | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
string password = "agava123"; | |
int attempt = 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
namespace Name | |
{ | |
internal class Class | |
{ | |
static void Main(string[] args) | |
{ | |
string symbolsRow = ""; | |
Console.Write("Write your name : "); | |
string name = Console.ReadLine(); |