Sponsorlu Bağlantılar
int ucgen(int,int,int);
int main()
{
int fonk,x,y,z;
printf("Lutfen ucgenin kenar degerlerini giriniz\n");
scanf("%d%d%d",&x,&y,&z);
fonk=ucgen(x,y,z);
system("pause");
}
int ucgen(int a,int b,int c)
{
int top1,top2,top3;
top1=a+b;
top2=a+c;
top3=b+c;
if(top1 > c && top2 > b && top3 > a)
printf("Degerleri bir ucgene aittir...\n");
else
printf("Degerleri ile bir ucgen cizilemez...\n");
}
Sponsorlu Bağlantılar
Hiç yorum yok:
Yorum Gönder