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 NumberInRange | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int number = int.Parse(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 SmallShop | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string product = Console.ReadLine(); | |
string city = 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 PersonalTitles_If_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double years = double.Parse(Console.ReadLine()); | |
char gender = char.Parse(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 AnimalType_Switch_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string animal = 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 AnimalType_If_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string animal = 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 WeekendOrWorkingDay_Switch | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string days = 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 WeekendOrWorkindDay | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string days = 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 DayOfWeek | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
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 DayOfWeek | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int dayOfWeek = int.Parse(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 LuchBreak | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string seriesName = Console.ReadLine(); | |
int episodeDuration = int.Parse(Console.ReadLine()); |