Search:

Type: Posts; User: kakaroto

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    45
    Views
    4,326

    anyone??

    anyone??
  2. Replies
    45
    Views
    4,326

    any tips on that?

    any tips on that?
  3. Replies
    45
    Views
    4,326

    in what loops i need to remove from the sides...

    in what loops i need to remove from the sides
    and in what
    between words

    ??
  4. Replies
    45
    Views
    4,326

    char* AtBash(char* text) { int...

    char* AtBash(char* text)
    {
    int i=0,start,j=0,k;
    char* word,*str,c;
    str=text;
    while (i<strlen(text))
    {
    for(i=0;str[i]!=' ';i++);

    if...
  5. Replies
    45
    Views
    4,326

    but i dont have those cases i have only two ...

    but i dont have those cases
    i have only two

    one if for a to z
    one if for A to Z
  6. Replies
    45
    Views
    4,326

    am i correct?

    am i correct?
  7. Replies
    45
    Views
    4,326

    so there is a conflicting logic in your solution

    so there is a conflicting logic in your solution
  8. Replies
    45
    Views
    4,326

    by your formula result=-(original-'n')+'m' ...

    by your formula

    result=-(original-'n')+'m'
    we need to know the opposite char first in order to get to the result

    so its not working

    becase 'm' is the result in the first place
  9. Replies
    45
    Views
    4,326

    you told me one case which worked but i couldnt...

    you told me one case which worked
    but i couldnt figure out the general case

    so i thought of this
  10. Replies
    45
    Views
    4,326

    if its 'a' - 'z' range result ='a'+26-ch; if...

    if its 'a' - 'z' range
    result ='a'+26-ch;

    if its 'A' - 'Z' range
    result ='A'+26-ch;

    is it ok now?
  11. Replies
    45
    Views
    4,326

    this formula works fine...

    this formula works fine
    result=-(original-'n')+'m'

    i think its simpler:
    result =26-ch;
    correct?
  12. Replies
    45
    Views
    4,326

    what amount ti subtract? can you show the...

    what amount ti subtract?


    can you show the numbers i subtract and add to ch in order to convert
    'a' to 'm' and vice versa
  13. Replies
    45
    Views
    4,326

    can you tell me how to change my c>'z' part so...

    can you tell me how to change my c>'z' part
    so it will do mirroring?
  14. Replies
    45
    Views
    4,326

    can you guide me specificly what lines should i...

    can you guide me specificly what lines should i change
  15. Replies
    45
    Views
    4,326

    i know thats its wrong can you say why the...

    i know thats its wrong

    can you say why the c>'z' part is wrong?
  16. Replies
    45
    Views
    4,326

    is there such a process in my code ??

    is there such a process in my code

    ??
  17. Replies
    45
    Views
    4,326

    so without the helping function do you see where...

    so without the helping function
    do you see where is my mistakes
  18. Replies
    45
    Views
    4,326

    can you see how to solve it with out the helping...

    can you see how to solve it with out the helping functions
    like i did it
    ?
  19. Replies
    45
    Views
    4,326

    how to do to do az, by, cx, etc. .

    how to do
    to do a<->z, b<->y, c<->x, etc. .
  20. Replies
    45
    Views
    4,326

    i dont know how to do mirroring i know that if...

    i dont know how to do mirroring

    i know that if ch is 'a'
    and i want ch to be 'd'

    then ch=ch+3
  21. Replies
    45
    Views
    4,326

    i was told to solve it in this manner can you...

    i was told to solve it in this manner
    can you say where is the problem there
    ??
  22. Replies
    45
    Views
    4,326

    i am required to do it in one function where is...

    i am required to do it in one function
    where is the logical mistake?
  23. Replies
    45
    Views
    4,326

    now i think its perfectly indented char*...

    now i think its perfectly indented



    char* AtBash(char* text)
    {
    int i=0,start,j=0,k;
    char* word,*str,c;
    str=text;
    while (i<strlen(text))
  24. Replies
    45
    Views
    4,326

    paralel ascii change of a string..

    i need to write a function which inputs a string
    and removes all the spaces from the start and removes all the spaces from the end of the string.
    the string consists of words separated by spaces....
  25. how to change a char into another char with numbers..

    i know that 'c'-'a'=2

    using that property
    how do i change 'a' into 'c'

    ??

    i think its
Results 1 to 25 of 45
Page 1 of 2 1 2