1. 1.
    0
    beyler yarına bi program yetistirmem lazım c den anlayan varca boyle muhendis filan bi baksın lan yoksa gotume giricvek
    ···
  2. 2.
    0
    pointer kullan, ilk indisten başla 3 ekleyerek kaydır.
    ···
  3. 3.
    0
    @ 21 suku... tam bende onu dusundum basligi okuyunca :D
    ···
  4. 4.
    0
    evet beyler yokmu aranızda bi aynştayn aq bi yardım eli muhtacım lan
    ···
  5. 5.
    0
    @20 amk array ve string olmadan metni nasil alicaksin
    ya char array olacak ya string bu soruda acmaz var.
    ···
  6. 6.
    0
    @24 bi oku aq string kuanılmıcak
    ···
  7. 7.
    0
    cls vardı sonra dir vardı bi de tree vardı dimi la dos'ta. bunlar işine yarar umarım
    ···
  8. 8.
    0
    fortran biliyorum amk
    ···
  9. 9.
    0
    string den char a cast et. ascii sine 3 ekle tekrar string yap loopa ekle
    ···
  10. 10.
    0
    array yoksa linked liste ekle bin harfleri tek tek. string nasıl yok text den dosyayı nasıl okicaksın mal. int diye mi amk.
    ···
  11. 11.
    0
    givemeall vardı lan bi de gta'da kod olarak dos olmazsa bu da işine yarayabilir
    ···
  12. 12.
    0
    printf("noluyo burda aq");
    ···
  13. 13.
    0
    al ve kaybol özel okul bini

    1. include <stdio.h>
    2. include <string.h> //for strlen();
    3. include <ctype.h> //for toupper();

    char *abc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; //Alphabet defined as global variable

    int subst(char x); //Function defined

    int main(void)
    {
    char key;
    int key2;

    puts("Enter a 1 character long text");
    scanf("%c", &key);

    key = toupper(key); //converts all letters to uppercase
    key2 = subst(key); //calling substitution function

    printf("%dn", key2);

    return 0;
    }

    int subst(char x)
    {
    int out, i, len;
    len = strlen(abc); //do len be abc string's length

    for((i = 0); (i = len); i++)
    {
    if(abc[i] == x)
    {
    out = i;
    }
    /*This should search each abc's characters and compare it with x (which is the key variable) and, if they're the same, the function will return the corresponding character's place in the array as result (so, A = 0, B = 1, etc.)*/
    }

    return out;
    }
    ···
  14. 14.
    0
    @38 beynini gibeyim. ver balığı ver öğretme tutmayı.
    ···
  15. 15.
    0
    soyle c++ c# hepsini anlarım su anda bı yazılım fırmasında calısıorm problem nedir ciddiyim
    ···
  16. 16.
    0
    aynı problemin C#için çözümü ..

    using system;
    using system. collections.generic;
    using system. linq;
    using system. text;
    using system.io;

    namespace fileencryption
    {
    class program
    {
    static string encrypttext(string s)
    {
    // encrypt formula: y=2x+3
    string etext="";

    for (int i = 0; i < s.length; i++)
    {
    int x = (int)convert. tochar(s.substring(i, 1));
    int y = (2 * x) + 3;
    etext += ((char)y).tostring();
    }

    return "#####***#####***" + environment. newline + etext;
    }

    static string decrypttext(string s)
    {
    // decrypt formula: y=2x+3 x=(y-3)/2;

    string detext = "";

    for (int i = 0; i < s.length; i++)
    {
    int y = (int)convert. tochar(s.substring(i, 1));
    int x = (y-3) / 2;
    detext += ((char)x).tostring();
    }

    return detext;

    }

    static string readfile(string p, ref string fl)
    {
    string t = "", l = "";

    streamreader rfile = file. opentext(@p);

    l = rfile. readline();
    fl = l;

    while (l != null) // key: #####***#####***
    {
    if (l != "#####***#####***") t += (l + environment. newline);
    l = rfile. readline();
    }

    rfile. close();

    return t;
    }

    static bool writefile(string p, string t)
    {
    bool op = true;
    try
    {
    streamwriter writefile = file. createtext(@p);
    writefile. write(t);
    writefile. close();
    }
    catch
    {
    op = false;
    }
    return op;
    }

    static void main(string[] args)
    {
    console. write("please enter full name and path of encrypt/decrypt file: ");
    string p = console. readline();
    string firstline = "";
    string t = readfile(@p, ref firstline);


    if (firstline == "#####***#####***") t = decrypttext(t);
    else t = encrypttext(t);

    if (writefile(p, t))
    {
    console. write("do you want to see the file contents? [y/n]");
    string ans = console. readline().toupper();

    if (ans == "y")
    {
    console. write("nn{0}nn", readfile(@p, ref firstline));
    }
    }
    else
    {
    console. writeline("nnan unexpected error has occurred, please try again");
    }

    console. readkey();
    }
    }
    }
    Tümünü Göster
    ···
  17. 17.
    0
    metni dosyadan mı alacaksın, nasıl tutmayacaksın dizide veya bellekte ancak dosyadan okuyacaksan olur. Eğer öyleyse bi while içinde karakter karakter oku, okuduğun karakteri 3 arttırarak ya da neyse, hatta sabit bi sayı olması gerekmez mesela iki dosyayı da birleştirebilirsin; atıyorum anan'la 3251 i birleştirip yeni dosyaya ekleyebilirsin. Sana kalmış. kod soruyorsan, o ücretlendirmeye tabi tutulur. sonuçta böyle para kazanıyoruz.
    ···
  18. 18.
    0
    1 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 0 1
    ···
  19. 19.
    0
    bu gerizekalı bizim okuldan hiç bi soruyu yapamıor amk
    writeln("gerizekalı")
    readln(a)
    end. mal bu pascal dilinde atlama hemen
    ···
  20. 20.
    0
    sor yardımcı olayım
    ···