1. 379.
    0
    teagan presley
    ···
  2. 378.
    0
    up up up
    ···
  3. 377.
    0
    bi tak kopyalamamısım
    ···
  4. 376.
    0
    http://imgim.com/33648752.jpg
    ···
  5. 375.
    0
    hayme pahilyo
    ···
  6. 374.
    0
    ஐ◄███▓▒░░ inci giber ░░▒▓███►ஐ
    ···
  7. 373.
    0
    tornistanbaskaptan.avi
    ···
  8. 372.
    0
    http://imgim.com/xptzfb.gif
    ···
  9. 371.
    0
    ···
  10. 370.
    0
    http://www.gencfb.org/Hab...-yedirmeyelim_2749hb.html
    ···
  11. 369.
    0
    şimdi liseli gelse anana sövse hepsi peşinden mi gidicek yani
    ···
  12. 368.
    0
    ···
  13. 367.
    0
    # ஐ◄███▓▒░░ inci gibemez ░░▒▓███►ஐ
    ···
  14. 366.
    0
    ஐ◄███▓▒░░ inci giber ░░▒▓███►ஐ
    ···
  15. 365.
    0
    am züt meme
    ···
  16. 364.
    0
    http://www.youtube.com/watch?v=vr3x_rrjdd4
    ···
  17. 363.
    0
    ஐ◄███▓▒░░ inci giber ░░▒▓███►ஐ
    ···
  18. 362.
    0
    # ஐ◄███▓▒░░ inci gibemez ░░▒▓███►ஐ
    ···
  19. 361.
    0
    http://imgim.com/img1551289377r.jpg
    ···
  20. 360.
    0
    package stack;
    interface instack{
    double pop();
    void push(int item);
    }

    class stackyap implements instack{
    private int stack[];
    private int karar;

    stackyap(double size){
    stack=new double[size];
    karar=-1;
    }

    public void push(double item){
    if(karar==stack. length-1)
    System.out. println("stack is full");
    else
    stack[++karar]=item;
    }
    public double pop(){
    if(karar<0){

    System.out. println("dibine vurduk");
    return 0;
    }
    else
    return stack[karar--];


    }
    }
    class test{
    public static void main(String args[]){
    stackyap ob1=new stackyap(5);
    stackyap ob2=new stackyap(10);

    for(int i=0;i<5;i++) ob1.push(5);
    for(int k=0;k<10;k++) ob2.push(k*21);

    for(int i=0;i<5;i++) System.out. println(ob1.pop());
    System.out. println("hurri hurri..");
    for(int k=0;k<10;k++) System.out. println(ob2.pop());


    }
    }
    ···