0
#include<stdio.h>
2.
include<math.h>
int main(){
int first, second,aci;
float angle;
printf("Give a real value for the first edge : ");
scanf("%d", &first);
printf("Give a real value for the second edge : ");
scanf("%d", &second);
printf("Give a real value for the angle in degrees : ");
scanf("%d", &aci);
angle=(float)((first*first) + (second*second) - 2*first*second*cos(aci));
angle=sqrt(angle);
printf("The third edge is computed as : %f", angle);
printf("n");
system("pause");
return 0;
}
Kod bu binler çıkan sonuç mesela 3,4,90 girdikten sonra 5 çıkması lazımken 5.97 gibi bişi çıkıyor, nasıl 5 çıkar laaan yardım edinn am aşkınaaa...