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 iJuniorPractice; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string name = "Familievich"; | |
string surname = "Valerii"; | |
string tea = "coffee"; | |
string coffee = "tea"; |
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 iJuniorPractice; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string informationAssembled = ""; | |
string[] questions = new string[] | |
{ | |
"Напишите свое имя, пожалуйста: ", |
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 iJunior; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int booksCountMax = 1; | |
int pensCountMin = 0; | |
double currentPositionX = 1.2; | |
double currentPositionY = 1.22; |
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
internal class Program | |
{ | |
public static void Main() | |
{ | |
SoldierBaseUI application = new SoldierBaseUI(); | |
application.StartUI(); | |
} | |
} | |
class SoldierBaseUI |
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
internal class Program | |
{ | |
public static void Main() | |
{ | |
SoldierBaseUI application = new SoldierBaseUI(); | |
application.StartUI(); | |
} | |
} | |
class SoldierBaseUI |
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
internal class Program | |
{ | |
public static void Main() | |
{ | |
RootenFoodDetectorUI application = new RootenFoodDetectorUI(); | |
application.StartUI(); | |
} | |
} | |
class RootenFoodDetectorUI |
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
internal class Program | |
{ | |
public static void Main() | |
{ | |
TopPlayerTable table = new TopPlayerTable(); | |
table.StartUI(); | |
} | |
} | |
class TopPlayerTable |
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
internal class Program | |
{ | |
public static void Main() | |
{ | |
HospitalProgrammUI application = new HospitalProgrammUI(); | |
application.StartUI(); | |
} | |
} | |
enum Diseases |
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
internal class Program | |
{ | |
public static void Main() | |
{ | |
PoliceProgrammUI application = new PoliceProgrammUI(); | |
application.StartUI(); | |
} | |
} | |
class PoliceProgrammUI |
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
internal class Program | |
{ | |
public static void Main() | |
{ | |
DetectiveProgrammUI application = new DetectiveProgrammUI(); | |
application.StartUI(); | |
} | |
} | |
class DetectiveProgrammUI |