1. 1.
    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...
    ···
  2. 2.
    0
    yazdım ama benimki hep 40 yapıo hacı kusura bakma
    ···
  3. 3.
    0
    @2 24 32 90 girme o zaman hacı
    ···
  4. 4.
    0
    up up upppp
    ···
  5. 5.
    0
    apppppp appppp aq apppppp
    ···
  6. 6.
    0
    format at geçer pampa
    ···
  7. 7.
    0
    sonuca noktadan sonrasını yazmaması için gerekli kodu ekle
    ···