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 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; | |
namespace Конвертор_от__C_към__F | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double celsius = double.Parse(Console.ReadLine()); | |
//F = [(C*9)/5] + 32 |
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) | |
{ | |
string firstName = Console.ReadLine(); | |
string lastName = 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) | |
{ | |
Console.Write("Enter your name: "); | |
string name = 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) | |
{ | |
Console.Write("inches = "); | |
double inch = 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) | |
{ | |
Console.Write("a = "); | |
int a = 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 Слепване_на_Текст | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string left = Console.ReadLine(); | |
string right = 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 Събиране_на_2_Числа | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int a = int.Parse(Console.ReadLine()); | |
int b = 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
namespace Квадрат_от_Звездички | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int N = int.Parse(Console.ReadLine()); | |
Console.WriteLine(new String('*', N)); |
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) | |
{ | |
int a = int.Parse(Console.ReadLine()); | |
int b = int.Parse(Console.ReadLine()); |