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 / 1. Hello SoftUni
Last active November 19, 2022 20:01
Hello SoftUni - First Steps In Coding - Lab
using System;
namespace HelloSoftUni
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello SoftUni");
}
@IvanITD
IvanITD / 2. Nums 1...10
Last active November 19, 2022 20:02
Num 1...10 - First Steps In Coding - Lab
using System;
namespace Nums_1_10
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine(1);
Console.WriteLine(2);
@IvanITD
IvanITD / 3. Rectangle Area
Last active November 19, 2022 20:03
Rectangle Area - First Steps In Coding - Lab
using System;
namespace RectangleArea
{
internal class Program
{
static void Main(string[] args)
{
double a = double.Parse(Console.ReadLine());
double b = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 4. Inches To Centimeters
Last active November 19, 2022 20:04
Inches To Centimeters - First Steps In Coding - Lab
using System;
namespace InchesToCentimeters
{
internal class Program
{
static void Main(string[] args)
{
double inches = double.Parse(Console.ReadLine());
double centimeters = inches * 2.54;
@IvanITD
IvanITD / 5. Greeting by Name
Last active November 19, 2022 20:06
Greeting by Name - First Steps In Coding - Lab
using System;
namespace GreetingByName
{
internal class Program
{
static void Main(string[] args)
{
string name = Console.ReadLine();
Console.WriteLine($"Hello, {name}!");
@IvanITD
IvanITD / 6. Concatenate Data
Last active November 19, 2022 20:06
Concatenate Data - First Steps In Coding - Lab
using System;
namespace ConcatenateData
{
internal class Program
{
static void Main(string[] args)
{
string firstName = Console.ReadLine();
string lastName = Console.ReadLine();
@IvanITD
IvanITD / 7. Projects Creation
Last active November 19, 2022 20:07
Projects Creation - First Steps In Coding - Lab
using System;
namespace ProjectsCreation
{
internal class Program
{
static void Main(string[] args)
{
string architectName = Console.ReadLine();
int ProjectsAmount = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 8. Pet Shop
Last active November 19, 2022 20:07
Pet Shop - First Steps In Coding - Lab
using System;
namespace PetShop
{
internal class Program
{
static void Main(string[] args)
{
int dogFoodAmount = int.Parse(Console.ReadLine());
int catFoodAmount = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 9. Yard Greening
Last active November 19, 2022 20:07
Yard Greening - First Steps In Coding - Lab
using System;
namespace YardGreening
{
internal class Program
{
static void Main(string[] args)
{
double squareMeters = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 1. Hello C#
Created November 14, 2022 09:16
Hello C# - First Steps In Programming
using System;
namespace HelloCSharp
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello C#");
}