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 Task3t3 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
//int largestNumber = 0; | |
//int compositionArray; |
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 Task3t2 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int largestNumber = 0; | |
int compositionArray; |
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 Task3t1 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int sumArray; | |
int compositionArray; |
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() | |
{ | |
// ====== РАЗДЕЛ: Основы программирования ====== | |
VariablesExample(); | |
NamingConventions(); | |
ArithmeticOperators(); |
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 Task2t11 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandBasicAttack = "1"; | |
const string CommandFireBoll = "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 Task2t10 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int userNumber; | |
int multipleTwoNumber = 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 Task2t9 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int userNumber; | |
int firstNumber = 50; |
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 Task2t7 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string userName; | |
string symbolString = ""; |
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 Task2t8 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string password = "123456789"; | |
string userPassword; |
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 Task2t5 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandFavoriteToy = "1"; | |
const string CommandResulToy = "2"; |
NewerOlder