Files
c-sharp/Kor/Program.cs

21 lines
497 B
C#
Raw Normal View History

2022-03-22 16:13:19 +01:00
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();
}
}
}