1. 176.
    0
    c# giber alın size bugünkü projem gibikler:

    8. define _crt_secure_no_deprecate
    9. define seek_set 0
    10. include <stdio.h>
    11. include <stdlib.h>
    12. include <math.h>
    13. include <ctype.h>
    14. include <conio.h>

    char alphadizi[]={'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f','g','h',
    'i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};

    int byteal;

    int yerinihesapla(char* value)
    {

    unsigned int cikis;
    int i=0;
    //-- cikis temp olarak kullanıldı...
    cikis = value[0];
    value[0] = value[4];
    value[4] = cikis;

    cikis = value[1];
    value[1] = value[3];
    value[3] = cikis;

    cikis = 0;

    for(i = 0; i < 5; ++i)
    {
    int temp = alpha2dec(value[i]);

    if(i==0)
    {
    cikis+=(temp * 1);
    }
    else if(i==1)
    {
    cikis+=(temp * 36);
    }
    else if(i==2)
    {
    cikis+=(temp * 1296);
    }
    else if(i==3)
    {
    cikis+=(temp * 46656);
    }
    else if(i==4)
    {
    cikis+=(temp * 1679616);
    }
    }

    printf("yeri: %d n",(cikis*2));
    getchar();

    return (cikis * 2);

    }
    ···
   tümünü göster