C# ile yarıçapı girilen bir dairenin çevresini hesaplayan program:
1 2 3 4 5 6 7 8 9 |
float cevre, pi = 3.14f; int yaricap; Console.Write("Yarıçap uzunluğunu giriniz :"); yaricap = Convert.ToInt32(Console.ReadLine()); cevre= 2* pi * yaricap ; Console.WriteLine("Çemberin Çevresi= {0}",cevre); Console.ReadKey(); |
Yorum Yap