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 HelloSoftUni | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello SoftUni"); | |
} |
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 Nums_1_10 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine(1); | |
Console.WriteLine(2); |
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 RectangleArea | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double a = double.Parse(Console.ReadLine()); | |
double b = 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 InchesToCentimeters | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double inches = double.Parse(Console.ReadLine()); | |
double centimeters = inches * 2.54; |
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 GreetingByName | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string name = Console.ReadLine(); | |
Console.WriteLine($"Hello, {name}!"); |
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 ConcatenateData | |
{ | |
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 ProjectsCreation | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string architectName = Console.ReadLine(); | |
int ProjectsAmount = 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 PetShop | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int dogFoodAmount = int.Parse(Console.ReadLine()); | |
int catFoodAmount = 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 YardGreening | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double squareMeters = 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 HelloCSharp | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello C#"); | |
} |
OlderNewer