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 дз2._0_контроль_выхода | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("повторить данное сообщение?"); | |
string userAnswer = Console.ReadLine(); |
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 дз2._0_контроль_выхода | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string exit = "777"; |
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 дз_последовательность | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int number = 5; | |
int maxNumber = 103; |
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 дз_последовательность | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int number = 5; | |
int Reaply = 15; |
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 дз_последовательность | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int startNumber = 5; | |
int maxNuber = 103; |
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 dz_summa_chisel | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Random rand = new Random(); | |
int number = rand.Next(1, 101); |
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 дз_последовательность | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int startNumber = 5; | |
int maxNuber = 103; |
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 dz_summa_chisel | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Random random = new Random(); | |
int minRandomNumber = 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 hw_consol_menu | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandShowText1 = "1"; | |
const string CommandShowText2 = "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 currency_3_converter | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
const string CommandConvertRublesToDollars = "1"; | |
const string CommandConvertRublesToEuro = "2"; |
OlderNewer