x5 Comptes Netflix Gratuit [27.10.2018]

Discussion dans 'Netflix' créé par Sι∂яα∂ι, 27 Octobre 2018.

  1. Griitix

    Griitix Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    2
    J'aime reçus:
    0
    Points:
    11
    Merci,mec tu geres pour les comptes;
     
  2. zaera

    zaera Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    6
    J'aime reçus:
    0
    Points:
    11
    mrc mrc mrc mrc mrc mrc mrc mrc mrcùrc mrc
     
  3. zaera

    zaera Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    6
    J'aime reçus:
    0
    Points:
    11
    love love move ove gbhrthgdgdgdegedgt ffrf rerref ezdezar
     
  4. marionw5

    marionw5 Membre

    Inscrit:
    8 Septembre 2018
    Messages:
    5
    J'aime reçus:
    0
    Points:
    21
    MERCI POUR LES COMPTES MERCI MERCI
     
  5. Rayanos14

    Rayanos14 Membre

    Inscrit:
    27 Juillet 2018
    Messages:
    18
    J'aime reçus:
    0
    Points:
    31
    Merci pour les comptes j’aime bien ce que vous faites. Couiuurage
     
  6. Neizox

    Neizox Membre

    Inscrit:
    28 Octobre 2018
    Messages:
    30
    J'aime reçus:
    0
    Points:
    21
  7. marionw5

    marionw5 Membre

    Inscrit:
    8 Septembre 2018
    Messages:
    5
    J'aime reçus:
    0
    Points:
    21
    MERCI POUR LES COMPTE CEST COOL TROP BIEN
     
  8. Noeli

    Noeli Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    2
    J'aime reçus:
    0
    Points:
    11
    Salut merci mec t le meuilleur
     
  9. Azerty89

    Azerty89 Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    1
    J'aime reçus:
    0
    Points:
    11
    Super merci je suis tres content franchement bravo
     
  10. mahmoud2022

    mahmoud2022 Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    1
    J'aime reçus:
    0
    Points:
    11
    merci mec tu gere con tinue wesh
    t'assure mon pote continue comme ça
     
  11. paulin44

    paulin44 Membre

    Inscrit:
    30 Août 2018
    Messages:
    64
    J'aime reçus:
    1
    Points:
    58
    merci pour ce compte ce site est vraiment genial
     
  12. Caitestrb

    Caitestrb Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    1
    J'aime reçus:
    0
    Points:
    11
    Nouveau
    merci pour ce compte ce site est vraiment genial
     
  13. murakamiste

    murakamiste Membre

    Inscrit:
    4 Juillet 2018
    Messages:
    19
    J'aime reçus:
    0
    Points:
    31
    HjJ'habie je suis la maman a fait une
     
  14. paddock

    paddock Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    3
    J'aime reçus:
    0
    Points:
    11
    merci beaucoup pour les comptes c'est grvv cool
     
  15. Ghazi

    Ghazi Membre

    Inscrit:
    27 Août 2017
    Messages:
    92
    J'aime reçus:
    0
    Points:
    2 306
    include<iostream>
    #include<fstream>
    #include<cctype>
    #include<iomanip>
    using namespace std;

    //***************************************************************
    // CLASS USED IN PROJECT
    //****************************************************************

    class account
    {
    int acno;
    char name[50];
    int deposit;
    char type;
    public:
    void create_account(); //function to get data from user
    void show_account() const; //function to show data on screen
    void modify(); //function to add new data
    void dep(int); //function to accept amount and add to balance amount
    void draw(int); //function to accept amount and subtract from balance amount
    void report() const; //function to show data in tabular format
    int retacno() const; //function to return account number
    int retdeposit() const; //function to return balance amount
    char rettype() const; //function to return type of account
    }; //class ends here
    void account::create_account()
    {
    cout<<"\nEnter The account No. :";
    cin>>acno;
    cout<<"\n\nEnter The Name of The account Holder : ";
    cin.ignore();
    cin.getline(name,50);
    cout<<"\nEnter Type of The account (C/S) : ";
    cin>>type;
    type=toupper(type);
    cout<<"\nEnter The Initial amount(>=500 for Saving and >=1000 for current ) : ";
    cin>>deposit;
    cout<<"\n\n\nAccount Created..";
    }

    void account::show_account() const
    {
    cout<<"\nAccount No. : "<<acno;
    cout<<"\nAccount Holder Name : ";
    cout<<name;
    cout<<"\nType of Account : "<<type;
    cout<<"\nBalance amount : "<<deposit;
    }


    void account::modify()
    {
    cout<<"\nAccount No. : "<<acno;
    cout<<"\nModify Account Holder Name : ";
    cin.ignore();
    cin.getline(name,50);
    cout<<"\nModify Type of Account : ";
    cin>>type;
    type=toupper(type);
    cout<<"\nModify Balance amount : ";
    cin>>deposit;
    }


    void account::dep(int x)
    {
    deposit+=x;
    }

    void account::draw(int x)
    {
    deposit-=x;
    }

    void account::report() const
    {
    cout<<acno<<setw(10)<<" "<<name<<setw(10)<<" "<<type<<setw(6)<<deposit<<endl;
    }


    int account::retacno() const
    {
    return acno;
    }

    int account::retdeposit() const
    {
    return deposit;
    }

    char account::rettype() const
    {
    return type;
    }


    //***************************************************************
    // function declaration
    //****************************************************************
    void write_account(); //function to write record in binary file
    void display_sp(int); //function to display account details given by user
    void modify_account(int); //function to modify record of file
    void delete_account(int); //function to delete record of file
    void display_all(); //function to display all account details
    void deposit_withdraw(int, int); // function to desposit/withdraw amount for given account
    void intro(); //introductory screen function

    //***************************************************************
    // THE MAIN FUNCTION OF PROGRAM
    //****************************************************************

    int main()
    {
    char ch;
    int num;
    intro();
     
  16. FRANKLINTHUG

    FRANKLINTHUG Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    5
    J'aime reçus:
    0
    Points:
    11
    Trop bien merci! je vais pouvoir regarder des séries
     
  17. Moi0621

    Moi0621 Membre

    Inscrit:
    10 Mars 2018
    Messages:
    11
    J'aime reçus:
    0
    Points:
    521
    Wouaw génial merci , je vais pouvoir passer des soirées netflix&chill
     
  18. alitop

    alitop Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    3
    J'aime reçus:
    0
    Points:
    11
    génial merci , je vais pouvoir passer des soirées netflix&chill
     
  19. topto

    topto Membre

    Inscrit:
    29 Octobre 2018
    Messages:
    1
    J'aime reçus:
    0
    Points:
    11
    génial merci , je vais pouvoir passer des soirées netflix&chill
     
  20. Zerzane

    Zerzane Membre

    Inscrit:
    27 Juillet 2018
    Messages:
    77
    J'aime reçus:
    0
    Points:
    2 316
    merci bcp d evot pars gale merci cv bien
     

Partager cette page

  1. Ce site utilise des cookies. En continuant à utiliser ce site, vous acceptez l'utilisation des cookies.
    Rejeter la notice