using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace orm5
{
class Program
{
static void Main(string[] args)
{
double a, alan, çevre;
Console.Write("kenar gir: ");
double.TryParse(Console.ReadLine(), out a);
alan = (Math.Pow(3, 1 / 3) / 2) * a * a;
çevre = 6 * a;
Console.Write("Alan= " + alan);
Console.Write("\nÇevre= " + çevre);
Console.ReadKey();
}
}
}
0 yorum:
Yorum Gönder