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 DepositCalculator | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double depositSum = double.Parse(Console.ReadLine()); | |
int depositTerm = 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 RadiansToDegrees | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double radians = double.Parse(Console.ReadLine()); | |
double degrees = radians * 180 / Math.PI; |
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; | |
using System.ComponentModel.Design; | |
namespace UsdToBgn | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double Usd = 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; | |
using System.Globalization; | |
using System.Security.Cryptography; | |
namespace _1000_дни_на_Земята | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ |
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 Междувалутен_конвертор | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
{ | |
double sum = 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 Лице_на_триъгълник | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double side = double.Parse(Console.ReadLine()); | |
double height = 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; | |
using System.Runtime.InteropServices; | |
namespace Лице_на_правоъгълник_в_равнината | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double x1 = 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; | |
using System.Runtime.InteropServices; | |
namespace Периметър_и_лице_на_кръг | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double r = 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 Лице_на_трапец | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double b1 = double.Parse(Console.ReadLine()); | |
double b2 = 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 Конвертор_от_USD_към_BGN | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double usd = double.Parse(Console.ReadLine()); | |
double bgn = usd * 1.79549; |