Skip to content

Instantly share code, notes, and snippets.

View IvanITD's full-sized avatar
“Building the future, one line of code at a time.”

Ivan Ivanov IvanITD

“Building the future, one line of code at a time.”
View GitHub Profile
@IvanITD
IvanITD / 05. Journey
Created January 3, 2023 20:43
Journey - Conditional Statements Advanced - Exercise
using System;
namespace Journey
{
internal class Program
{
static void Main(string[] args)
{
double budget = double.Parse(Console.ReadLine());
string season = Console.ReadLine();
@IvanITD
IvanITD / 04. Fishing Boat
Created December 30, 2022 19:10
Fhishing Boat - Conditional Statements Advanced - Exercise
using System;
namespace FishingBoat
{
internal class Program
{
static void Main(string[] args)
{
int groupBudget = int.Parse(Console.ReadLine());
string season = Console.ReadLine();
@IvanITD
IvanITD / 3. New House (If-Switch Construction)
Created December 21, 2022 10:04
New House - Conditional Statements Advanced - Exercise
using System;
namespace NewHouse_Switch_
{
internal class Program
{
static void Main(string[] args)
{
string flowersType = Console.ReadLine();
int flowersAmount = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 3. New House (If Construction)
Last active December 21, 2022 10:03
New House - Conditional Statements Advanced - Exercise
using System;
namespace NewHouse_If_
{
internal class Program
{
static void Main(string[] args)
{
string flowersType = Console.ReadLine();
int flowersAmount = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 2. Summer Outfit (Switch Construction)
Created December 19, 2022 14:44
Summer Outfit - Conditional Statements Advanced - Exercise
using System;
namespace SummerOutfit_Switch_
{
internal class Program
{
static void Main(string[] args)
{
int degrees = int.Parse(Console.ReadLine());
string dayTime = Console.ReadLine();
@IvanITD
IvanITD / 2. Summer Outfit (If Construction)
Created December 19, 2022 14:43
Summer Outfit - Conditional Statements Advanced - Exercise
using System;
namespace SummerOutfit_If_
{
internal class Program
{
static void Main(string[] args)
{
int degrees = int.Parse(Console.ReadLine());
string dayTime = Console.ReadLine();
@IvanITD
IvanITD / 1. Cinema (Switch Construction)
Created December 19, 2022 01:39
Cinema - Conditional Statements Advanced - Exercise
using System;
namespace Cinema_S
{
internal class Program
{
static void Main(string[] args)
{
string projectionType = Console.ReadLine();
int linesAmmount = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 1. Cinema (If Construction)
Created December 19, 2022 01:26
Cinema - Conditional Statements Advanced - Exercise
using System;
namespace Cinema
{
internal class Program
{
static void Main(string[] args)
{
string projectionType = Console.ReadLine();
int lineAmmount = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 12. Trade Commissions (Switch Construction)
Created December 8, 2022 23:48
Trade Commissions - Conditional Statements Advanced - Lab
using System;
namespace TradeCommissions_Switch
{
internal class Program
{
static void Main(string[] args)
{
string city = Console.ReadLine();
double sales = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 12. Trade Commissions (If Construction)
Created December 8, 2022 22:02
Trade Commissions - Conditional Statements Advanced - Lab
using System;
namespace TradeCommissions
{
internal class Program
{
static void Main(string[] args)
{
string city = Console.ReadLine();
double sales = double.Parse(Console.ReadLine());