using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace orn3
{
class Program
{
static void Main(string[] args)
{
double r, hacim, yüzey;
Console.Write("Yarıcap gir: ");
double.TryParse(Console.ReadLine(), out r);
hacim =( 4 / 3 * Math.PI) * r * r;
yüzey = 4 * Math.PI * r * r;
Console.Write("hacim= " + hacim);
Console.Write("\nYüzey Alan= " + yüzey);
Console.ReadKey();
}
}
}
0 yorum:
Yorum Gönder