C# Console iki dik kenarı girilen üçgenin hipotenüsünü bulma

{{ page.title }}

Algoritma

  1. Başla
  2. a,b,c değişkenlerini al
  3. a,b değerini gir
  4. c = ( ( c ^ 2 ) + ( b ^ 2 ) ) ^ ( 1 / 2)
  5. Bitir

Bu soruda dairenin alanı gibi bir dik üçgen formülümüz bulunmaktadır. Buna göre kullanıcdan bu değerleri alıp, formülde yerine koyduktan sonra sonucu ekrana basarız. Bu soru konutla ilgili temel aksettiren sorulardandır.

Kod Yapısı

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dmg
{
class Program
{
static void Main(string[] args)
{
int a , b;
double c;
Console.WriteLine("A giriniz = ");
a = Convert.ToInt32( Console.ReadLine() );
Console.WriteLine("B giriniz = ");
b = Convert.ToInt32( Console.ReadLine() );
c = Convert.ToDouble( Math.Sqrt( ( Math.Pow(a,2) + Math.Pow(b,2) ) ) );
Console.WriteLine("Sonuç = " + c);
Console.ReadKey();
}
}
}

BOT Benson Topluluk kurucusu ve bir yazılımcı.