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 Polyclinic | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int quantityOfPatients; | |
int receptionTimeInMinutes = 10; |
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 crystalStore | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int gold; | |
int crystals = 1000; |
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 swappingValues | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string name = "Teben'kov"; | |
string surname = "Aleksandr"; |
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 pictures = 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 workingWithStrings | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string name; | |
string country; |
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.Text; | |
namespace variables | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string firstName = "Иван"; |