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 / 4. Password Guess
Created November 23, 2022 20:30
Password Guess - Conditional Statements - Lab
using System;
namespace Password_Guess
{
internal class Program
{
static void Main(string[] args)
{
string password = Console.ReadLine();
@IvanITD
IvanITD / 3. Even Or Odd
Created November 23, 2022 20:23
Even Or Odd - Conditional Statements - Lab
using System;
namespace EvenOrOdd
{
internal class Program
{
static void Main(string[] args)
{
int number = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 2. Greater Number
Last active November 23, 2022 20:23
Greater Number - Conditional Statements - Lab
using System;
namespace GreaterNumber
{
internal class Program
{
static void Main(string[] args)
{
int num1 = int.Parse(Console.ReadLine());
int num2 = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 1. Excellent Result
Last active November 23, 2022 20:11
Excellent Result - Conditional Statements - Lab
using System;
namespace Excellent_Result
{
internal class Program
{
static void Main(string[] args)
{
double evaluation = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 9. Fish Tank
Created November 21, 2022 01:20
Fish Tank - First Steps In Coding - Exercise
using System;
namespace FishTank
{
internal class Program
{
static void Main(string[] args)
{
int length = int.Parse(Console.ReadLine());
int width = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 8. Basketball Equipment
Created November 21, 2022 01:05
Basketball Equipment - First Steps In Coding - Exercise
using System;
namespace BasketballEquipment
{
internal class Program
{
static void Main(string[] args)
{
int basketballYearSub = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 7. Food Delivery
Created November 21, 2022 00:37
Food Delivery - First Steps In Coding - Exercise
using System;
namespace FoodDelivery
{
internal class Program
{
static void Main(string[] args)
{
int chickenMenuAmount = int.Parse(Console.ReadLine());
int fishMenuAmount = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 6. Repainting
Created November 20, 2022 21:30
Repainting - First Steps In Coding - Exercise
using System;
using System.Xml.Schema;
namespace Repainting
{
internal class Program
{
static void Main(string[] args)
{
int neededAmountNylon = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 5. Supplies for School
Created November 20, 2022 19:35
Supplies for School - First Steps In Coding - Exercise
using System;
namespace SuppliesForSchool
{
internal class Program
{
static void Main(string[] args)
{
int penPacketNum = int.Parse(Console.ReadLine());
int markerPacketNum = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 4. Vacation Book List
Created November 20, 2022 13:13
Vacation Book List - FIrst Steps In Coding - Exercise
using System;
namespace VacationBooksList
{
internal class Program
{
static void Main(string[] args)
{
int pageNum = int.Parse(Console.ReadLine());
int page = int.Parse(Console.ReadLine());