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 Journey | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double budget = double.Parse(Console.ReadLine()); | |
string season = 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 FishingBoat | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int groupBudget = int.Parse(Console.ReadLine()); | |
string season = 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 NewHouse_Switch_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string flowersType = Console.ReadLine(); | |
int flowersAmount = 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 NewHouse_If_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string flowersType = Console.ReadLine(); | |
int flowersAmount = 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 SummerOutfit_Switch_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int degrees = int.Parse(Console.ReadLine()); | |
string dayTime = 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 SummerOutfit_If_ | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int degrees = int.Parse(Console.ReadLine()); | |
string dayTime = 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 Cinema_S | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string projectionType = Console.ReadLine(); | |
int linesAmmount = 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 Cinema | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string projectionType = Console.ReadLine(); | |
int lineAmmount = 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 TradeCommissions_Switch | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string city = Console.ReadLine(); | |
double sales = double.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 TradeCommissions | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string city = Console.ReadLine(); | |
double sales = double.Parse(Console.ReadLine()); |