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 FruitShop_Switch_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string fruit = Console.ReadLine(); | |
string weekDay = 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 FruitShop | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string fruit = Console.ReadLine(); | |
string weekDay = 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 InvalidNumber | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int num = 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 Invalid_Number | |
{ | |
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 FruitOrVegetable_Switch_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string product = 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 FruitOrVegetable_If_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string product = 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 CinemaTicket_Switch | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string weekDay = 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 CinemaTicket | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string weekDay = 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 WorkingHours | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int dayHour = int.Parse(Console.ReadLine()); | |
string weekDay = 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 WorkingHours | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int hour = int.Parse(Console.ReadLine()); | |
string weekDay = Console.ReadLine(); |