This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/software/1_sem/calculator/calculator/Program.cs

20 lines
494 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace calculator
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Converter.KmToNm(2345.5));
Console.WriteLine(Converter.SquareRootOfPi());
Console.WriteLine(Converter.ReturnLengthOfString("Dies ist ein Langer String"));
Console.ReadKey();
}
}
}