1. 10.
    0
    vermeyen oç
    ···
  2. 9.
    0
    @8 komik köpek fino
    ···
  3. 8.
    0
    int main()

    noktalı virgül ekgib
    ···
  4. 7.
    0
    @6 tamam panpa eyw az önce farkettim aq bu denis ritchienin aq.
    ···
  5. 6.
    0
    neyse koduna bakınca anlaşılıyor hatan zaten

    if (x=2) dersen her daim true döner x const, read only olmadığından x==2 yazacan

    edit: bir de sonuc int değil float olmalı yoksa tam sayı dönmeye çalışır fakat sen float dönsün istiyorsun.
    ···
  6. 5.
    0
    x*x, x<2

    2,x=6

    10-x , x>2

    şu kısımda ne anlatmak istediğini anlat sonra ben söylerim hatayı
    ···
  7. 4.
    0
    up up up upu upu upupup
    ···
  8. 3.
    0
    up up up up up up
    ···
  9. 2.
    0
    şukular sizi bekliyor
    ···
  10. 1.
    0
    beyler istiyorum ki

    x*x, x<2

    2,x=6

    10-x , x>2

    bu da benim yazdığım eksiğim ne

    3. include<stdio.h>
    4. include<math.h>
    float f( float x);
    int main()
    {
    float x;
    float value;

    printf("sayiyi girinn");
    scanf("%f",&x);
    value=f(x);
    printf(" the value of the f is:%fn",value);

    system("pause");
    return 0;
    }
    float f( float x)
    {
    int sonuc;

    if(x<2)
    sonuc=x*x;

    else if (x=2)
    sonuc=6;

    else (x>2)
    sonuc=10-x;

    return sonuc;
    }
    ···