Thread: what i learned

Results 1 to 3 of 3
  1. #1
    the grim reaper's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Ca Na Section
    Posts
    166
    Reputation
    19
    Thanks
    48
    My Mood
    Amazed

    Thumbs up what i learned

    hey guys im on chapter 3 on my C++ book im really learning fast

    here is a bit of my code ive been studying

    Code:
    #include <iostream>
    #include <iomanip> // this header file is for the setprecision manipulator
    using namespace std; // this is a shortcut
    // inluding each item in the std
    //namespace, just include them
    //all
    int main()
    {
    cout << 2002 <<endl;
    cout << "In hex " << hex<< 2002 <<endl;
    cout.setf(ios::scientific,ios::12345 <<endl;
    cout <<987.123456(3) << 987.123456 <<endl;
    cout.fill('X');
    cout.width(10);
    cout << 1234 <<endl;
    cout.setf(ios::left,ios::adjustfield);
    cout.width(10);
    cout << 1234 <<endl;
    return 0;
    }
    go ahead and some of you can maybe study this code abit like me

    Told ya im learning
    Respect List:
    [MPGH]Dave84311
    freedompeace
    _FK127_
    Reimy
    Speedforyou
    wolffang0000



    If i helped at all please press the thanks button

  2. #2
    matypatty's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    864
    Reputation
    229
    Thanks
    2,694
    My Mood
    Amused
    what the fuck does this have to do with ca hack source coding.

  3. #3
    kibbles18's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    US
    Posts
    860
    Reputation
    5
    Thanks
    127
    good job on learning.
    @matypatty what does anything now have to do with ca hack source coding?

Similar Threads

  1. What is learn C++?
    By NOOB in forum Combat Arms Coding Help & Discussion
    Replies: 17
    Last Post: 11-11-2010, 11:21 PM
  2. What should i learn?
    By -Jerry™ in forum General
    Replies: 22
    Last Post: 07-22-2009, 07:21 AM
  3. [POLL] what programming language should I learn 1st?
    By aswhooper in forum C++/C Programming
    Replies: 26
    Last Post: 07-18-2009, 11:05 PM
  4. What song should I learn?
    By SheGotIt in forum Spammers Corner
    Replies: 8
    Last Post: 10-29-2008, 05:20 PM
  5. HELP: What other programs do I need to learn/start hacking?
    By ronyoung08 in forum General Hacking
    Replies: 0
    Last Post: 08-01-2008, 09:40 PM