homerseklet elemzes

This commit is contained in:
2022-03-22 16:13:19 +01:00
parent c1046619c6
commit 7669fef74a
29 changed files with 382 additions and 2 deletions

20
Kor/Program.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kor {
class Program {
static void Main(string[] args) {
Console.WriteLine("Kérem a kör sugarát");
Kör kör = new Kör();
kör.setSugar();
Console.WriteLine("Kerület {0} ",kör.kerulet());
Console.WriteLine("Terület {0} ",kör.terulet());
Console.ReadKey();
}
}
}