Bilgisayara sırasıyla iki dik kenarın uzunluklarını giriyorsunuz . Bilgisayar size float türünde hipotenüs uzunluğunu veriyor.


 


#include <stdio.h>
#include <math.h>
void hyp(float,float);
main()
{
float side1,side2;
int cnt;
for(cnt=1;cnt<=3;cnt++)
{
scanf(“%f%f”,&side1,&side2);
hyp(side1,side2);
}
}
void hyp(float x,float y)
{
float hyp1;
hyp1=sqrt(pow(x,2)+pow(y,2));
printf(“Hypotenus = %.1f”,hyp1);
}


Kaynak: Doğu Akdeniz Univ. CSIT Labworks
belgesi-415
Belgeci

Share
Published by
Belgeci

Recent Posts

Fecr-i ati Edebiyatı

FECRİ ATİ EDEBİYATI   Servet-i fünun edebiyatının devamı niteliğinde olan fecr-i ati topluluğu,1909 yılında ortaya…

5 saat ago

İlk Cep Telefonu

ÖZELLİKLER: Boyut: 28x8x6 cm Ağırlık: 850gr Ekran: Yok Devre sayısı: 30 Konuşma süresi: 35 dakika…

17 saat ago

Basic Grammar-Questions

There are two kinds of questions: yes or no questions and wh- questions. You ask…

1 gün ago

Basic Grammar-Positive And Negative Sentences

A positive sentence tells you that something is so. A sentence that tells you something…

2 gün ago

Basic Grammar-The Imperative

Use the base form of a verb to give commands or make direct requests. This…

2 gün ago

Basic Grammar-Sentences

A sentence is a group of words that expresses a complete thought. A sentence must…

3 gün ago