1. 76.
    0
    #include<stdio.h>
    2. include<stdlib.h>
    int main()
    {
    int d[300],a,b=0,c,x=0,i;
    printf("sayi 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-1;0<=i;i--)
    printf("%d ",d[i]);
    system("pause");
    return 0;
    }

    bu da çalışmıyor diyeni giberim
    ···
   tümünü göster