4 Temmuz 2020 Cumartesi

C programlama Matematik hypot fonksiyon

C programlama Matematik hypot fonksiyon hipotenüs hesaplama

#include <stdio.h>   
#include <math.h>     

int main ()
{
  double leg_x, leg_y, result;
  leg_x = 3;
  leg_y = 4;
  result = hypot (leg_x, leg_y);
  printf ("%f, %f and %f dik acili bir ucgen olusturur.\n",leg_x,leg_y,result);
  return 0;
}




Hiç yorum yok:

Yorum Gönder

Her yorum bilgidir. Araştırmaya devam...