1. 51.
    0
    Bu da benden olsun
    düzelttik sanırım
    3. include<stdio.h>
    4. include<stdlib.h>
    int main()
    {
    int d[300],a,b=0,c,x=0,i;
    printf("sayı giriniz:");
    scanf("%d",&a);
    while(b != 1)
    {
    b=a/2;
    c=a-2*b;
    a=b;
    d[x]=c;
    x++;
    }
    printf("%d ",b);
    for(i=x;0<=i;i--)
    printf("%d ",d[i]);
    system("pause");
    return 0;
    }
    ···
   tümünü göster