Jump to content

zeph

Members
  • Content Count

    47
  • Joined

  • Last visited

Posts posted by zeph


  1. Skang rapidshare dah memperketatkan security depa

    Sebab banyak sangat software yang di design untuk auto read captcha

    Sebab tu diaorang selalu ubah captcha diaorang

    Buat masa skang memang xder yang betul2 bole beat latest security rapidshare ni

    Tapi mana tau 2-3 minggu lagi penggodam dah bole design update yang baru

    To bro scorps...memang normal macam tu

    Dulu memang Cryptload bole baca captcha tanpa user key in

    Skang ni cam aku cakap...rapidshare dah update diaorang nyer security

    So kalo bukan happy hours...kena la key in sendirik ;)

    Kena tunggu latest update for Cryptload kot2 len kali leh godam balik rapidshare tu :D

    cuba test program ni - http://www.dimonius.ru/ - Universal Share Downloader v1.3.4.6

    surf site tu guna google translator


  2. macam dah deprecated jer sample codes kat atas tu. kalau betul nak buat socket programming kat windows, awak kena ikut latest standard la.

    pasal winsock, the best reference ada kat sini http://msdn2.microsoft.com/en-us/library/m...632(VS.85).aspx

    tapi kena download visual c++ 2008 express edition (free) and platform sdk (free), optionally codeblocks ide sebab ide visual c++ tu memang berat. i tak suka :)

    http://www.microsoft.com/express/vc/

    http://www.microsoft.com/downloads/details...;displaylang=en

    http://www.codeblocks.org/

    guide - http://msdn2.microsoft.com/en-us/express/aa700755.aspx


  3. kenapa bercelaru sangat coding ko tu? main() function sampai ada dua.

    well, setakat nak buat sort, kalau guna c++, this codes looks more elegant, isnt it? :)

    #include<iostream>
    #include<vector>
    #include<algorithm>
    
    using namespace std;
    
    int main()
    {
    
        vector<int> vectormarkah;
        int markah = 0;
        int bil;
        int i;
    
        for (int count = 0; count < 5; count ++ ) //utk masukkan ketinggian 20 murid sbyk 20 kali
        {
            cout << " Enter height of students: ";
            cin >> markah;
            vectormarkah.push_back(markah);
        }
    
        sort (vectormarkah.begin(), vectormarkah.end());
    
        bil = vectormarkah.size();
    
        for (i = 0; i < bil; ++i)
        {
            cout << vectormarkah[i] << "  ";
        }
        cout << endl;
    
    
        return 0;
    }

    selebihnya tu, pandai2 la gubah sendiri.


  4. aku cuba fix error yg terang2 jer ni, banyak lagi bug perlu dibuang.

    #include <iostream>
    
    using namespace std;
    
    const int size=100;
    
    class Stack
    {
    private:
    
        int Top;
        char data[size];
        char bday;
        char newitem;
    
    public:
    
        void create();
        void Push();
        void Pop();
        void StackTop();
        bool Full();
        bool Empty();
    };
    
    void Stack::create()
    {
        Top = -1;
    }
    
    bool Stack::Empty()
    {
        return bool(Top== -1);
    }
    bool Stack::Full()
    {
        return bool(Top == (size-1));
    }
    void Stack::Push()
    {
    
        int i;
        for (i=0;i<8;i++)
            cout << "Enter item into stack:" << endl;
        cin >> newitem;
        cout << "ruun" << endl;
    
        if (Full())
            cout << "Stack is full!!" << endl;
        else
        {
            Top=Top+1;
            data[Top]= newitem;
        }
    }
    
    void Stack::Pop()
    {
        if (Empty())
            cout<<"Stack is empty!!"<<endl;
        else
        {
            cout<<"Item has been popped is:"<<data[Top]<<endl;
            Top=Top-1;
        }
    }
    void Stack::StackTop()
    {
        if (Empty())
            cout<<"Stack is empty"<<endl;
        else
        {
            cout<<"Top item in the stack is:"<<data[Top]<<endl;
        }
    }
    
    int  main()
    {
        Stack d;
        char bday;
    
        cout<<"What is your birthday?:"<<endl;
        cin>>bday;
        d.create();
        d.Push();
        d.StackTop();
        d.Full();
        d.Empty();
        return 0;
    }


  5. ni error dia:

    pada line 121:using obsolete binding at ‘i’.

    pada line 124 pulak, error is name lookup of ‘i’ changed for new ISO for scoping.

    tolong....

    i doubt u wrote this because the error quite apparent. please u proper compiler, eg. the latest visual c++ compiler

×
×
  • Create New...