Facebook
From Chunky Crocodile, 4 Years ago, written in C++.
This paste is a reply to c++ from Cygan - go back
Embed
Viewing differences between c++ and Re: c++
#include 

using namespace std;

struct Elem{
    string napis;
    Elem*next;
};

int main()
funkcja(Elem*&glowa, int D)
{
    cout << "Podaj ilosc plyt" << endl;
    int i = 0, cenaf;
    cin >> i;
    if (i>0)
    {
        if (i<5) cenaf=(i*15);
        else if (i>=5) cenaf=(60+((i-4)*10));
        cout<<"cena wynosi: "<< cenaf;
if(glowa==NULL){
        return 0;
    }
    else cout<<"podano nieprawidlowa wartosc"< bool mniejsze=true;
    Elem*tmppop=NULL;
    Elem*tmp=glowa;
    while(true){
        if(tmp->napis.size()>=D){
            mniejsze=false;
            return 0;
        }
        if(tmp->next==NULL)
            break;

        tmppop=tmp;
        tmp=tmp->next;

    }
        if(glowa->next==NULL){
            delete glowa;
            glowa=NULL;
            return 1;
        }else if(glowa->next->next==NULL){
            delete glowa->next;
            delete glowa;
            glowa=NULL;
            return 2;
        }else{
            delete tmp;
            tmppop->next=NULL;
            tmp=glowa;
            glowa=glowa->next;
            delete tmp;
            return 2;
        }

    return 0;
}
}

int main()
{
    cout << "Hello World!" << endl;
    return 0;
}