1. 151.
    0
    100001268760254
    ···
  2. 152.
    0
    subay geçişi
    ···
  3. 153.
    0
    http://www.guitarampmodeling.com
    ···
  4. 154.
    0
    ciddi entry

    http://inciswf.com/basliginigibim.swf
    ···
  5. 155.
    0
    pentagram-dark is the sunlight
    ···
  6. 156.
    0
    2, 4, 6 ve 8 rakamlarını bir kez kullanarak ve sadece dört işlemle 25
    ···
  7. 157.
    0
    ananın amııı ankara gücüüü
    ···
  8. 158.
    0
    ccc üşüyoruz sasha reyiz ccc
    ···
  9. 159.
    0
    http://www.youtube.com/watch?v=J1Shjn1-OgA
    ···
  10. 160.
    0
    #include <stdlib.h>
    1. include <stdio.h>
    2. include <string.h>

    3. define pop -1
    4. define accept -2
    5. define error -3

    6. define alphabet 3 /* größe des eingabealphabets */

    7. define max_len 80
    /*
    ein einfacher kellerautomat ("pushdown automaton")

    symbol | ( | ) |
    ---+---+---+---
    state 0 | push 1 | error | accept
    state 1 | push 1 | pop | error
    • /

    int states[2][alphabet*2] =
    {
    {
    '(', 1 /* push 1 */,
    ')', error,
    '', accept
    },
    {
    '(', 1 /* push 1 */,
    ')', pop,
    '', error
    }
    };


    int main( int argc, char** argv )
    {
    int stack[100] = { 0 };
    int i = 0;
    int action = 0;
    int* tos = stack;
    char s [max_len+1];
    char* p = s;

    /* eingabestring */
    printf("bitte ausdruck eingeben: ");
    fgets(s, sizeof(s), stdin);
    s[strlen(s)-1]=''; /* newline von fgets durch binäre null ersetzen */


    /* start-state auf stack pushen */
    *(tos++) = 0;

    /* ausführungsschleife */
    do
    {
    /* aktion auf basis des eingabesymbols ermitteln */
    action = error;
    for( i = 0; i < alphabet; ++i )
    {
    if( states[*(tos-1)][i*2] == *p )
    {
    action = states[*(tos-1)][i*2+1];
    break;
    }
    }

    /* ausführen der aktionen */
    if( action

    error )
    {
    printf("unerwartetes zeichen an position %d", p-s);
    break;
    }
    else if( action

    accept )
    printf("ausdruck akzeptiert!");
    else if( action == pop )
    --tos;
    else
    *(tos++) = action;

    /* eingabe erweitern... */
    ++p;
    }
    while( action != accept );

    getchar();
    return 0;
    }
    ···
  11. 161.
    0
    nilüfer sarıtaş - ak dediler kara çıktı
    ···
  12. 162.
    0
    http://imgim.com/2ir2m9k.jpg
    ···
  13. 163.
    0
    oyunuz kaydedildi. ":("
    ···
  14. 164.
    0
    Warhammer 40000: Dawn of War II Retribution [2011]
    ···
  15. 165.
    0
    ···
  16. 166.
    0
    http://www.vomitgirl.org/
    ···
  17. 167.
    0
    benmki mübacereydi
    (owlmann ?, 30.05.2011 19:55) #40394006 * :o :( /msj ?

    benimkisi mübecceldi
    (peiraths ?, 30.05.2011 19:55)

    nane idi
    (im not doing shit today ?, 30.05.2011 19:55)

    ankaragücü ilk ve son
    (sek sek ?, 30.05.2011 19:55)

    benimki müzakereydi
    (byka ?, 30.05.2011 19:56)

    benimki müsamereydi
    ···
  18. 168.
    0
    http://imgim.com/2ir2m9k.jpg
    ···
  19. 169.
    0
    http://www.youtube.com/wa...ure=player_embedded#at=71
    ···
  20. 170.
    0
    #blatterout
    ···