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 / 3. Deposit Calculator
Created November 20, 2022 12:45
Deposit Calculator - First Steps In Coding - Exercise
using System;
namespace DepositCalculator
{
internal class Program
{
static void Main(string[] args)
{
double depositSum = double.Parse(Console.ReadLine());
int depositTerm = int.Parse(Console.ReadLine());
@IvanITD
IvanITD / 2. Radians To Degrees
Created November 20, 2022 12:29
Radians To Degrees - First Steps In Coding - Exercise
using System;
namespace RadiansToDegrees
{
internal class Program
{
static void Main(string[] args)
{
double radians = double.Parse(Console.ReadLine());
double degrees = radians * 180 / Math.PI;
@IvanITD
IvanITD / 1. USD To BGN
Created November 19, 2022 20:02
USD To BGN - First Steps In Coding - Exercise
using System;
using System.ComponentModel.Design;
namespace UsdToBgn
{
internal class Program
{
static void Main(string[] args)
{
double Usd = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 6. 1000 дни на Земята
Created November 17, 2022 22:46
1000 дни на Земята - Прости пресмятания
using System;
using System.Globalization;
using System.Security.Cryptography;
namespace _1000_дни_на_Земята
{
internal class Program
{
static void Main(string[] args)
{
@IvanITD
IvanITD / 5. Междувалутен конвертор
Created November 15, 2022 22:00
Междувалутен конвертор - Прости пресмятания
using System;
namespace Междувалутен_конвертор
{
internal class Program
{
static void Main(string[] args)
{
{
double sum = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 4. Лице на триъгълник
Created November 15, 2022 20:32
Лице на триъгълник - Прости пресмятания
using System;
namespace Лице_на_триъгълник
{
internal class Program
{
static void Main(string[] args)
{
double side = double.Parse(Console.ReadLine());
double height = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 3. Лице на правоъгълник в равнината
Created November 14, 2022 22:50
Лице на правоъгълник в равнината - Прости пресмятания
using System;
using System.Runtime.InteropServices;
namespace Лице_на_правоъгълник_в_равнината
{
internal class Program
{
static void Main(string[] args)
{
double x1 = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 2. Периметър и лице на кръг
Created November 14, 2022 22:49
Периметър и лице на кръг - Прости пресмятания
using System;
using System.Runtime.InteropServices;
namespace Периметър_и_лице_на_кръг
{
internal class Program
{
static void Main(string[] args)
{
double r = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 1. Лице на трапец
Last active November 14, 2022 22:48
Лице на трапец - Прости пресмятания
using System;
namespace Лице_на_трапец
{
internal class Program
{
static void Main(string[] args)
{
double b1 = double.Parse(Console.ReadLine());
double b2 = double.Parse(Console.ReadLine());
@IvanITD
IvanITD / 7. Конвертор от USD към BGN
Created November 14, 2022 22:43
Конвертор от USD към BGN - Четене и печатане на конзолата
using System;
namespace Конвертор_от_USD_към_BGN
{
internal class Program
{
static void Main(string[] args)
{
double usd = double.Parse(Console.ReadLine());
double bgn = usd * 1.79549;