Thread: C++ Poem

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    fvestrgenrl's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    172
    Reputation
    9
    Thanks
    26

    C++ Poem

    C++
    I don't understand all the fuss
    If you want a scoped pointer
    Find a lady and anoint her
    with watching your mem-o-ree!
    Oh I want -- to -- go -- back -- to -- C.
    With its malloc and its free
    I just get so confused with delete and new
    And what deletes who
    And comparing an int to a boo-lee-an
    I won't ever write a for loop
    Thanks to Bjorne Stroutroup
    And Alexander Stepanov
    And I'll bet you've had enough
    of this poem.

  2. #2
    Lakshay's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    www.MPGH.net // General // Crossfire
    Posts
    4,545
    Reputation
    335
    Thanks
    1,102
    My Mood
    Angelic

  3. #3
    UhWatchMe's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Den Helder, Netherlands
    Posts
    341
    Reputation
    10
    Thanks
    349
    My Mood
    Devilish
    Uhm? Fail pl0x.
    Quote Originally Posted by Wolf View Post
    The last 3 visitor(s) to this page were:
    [MPGH]Dave84311 Jabuuty671 Wolf

    You have dave on your profile
    Code:
    CeCe zegt (20:35):
    *You really think that the world will end?
    *I dont think so
    CeCe zegt (20:36):
    *Because I have a yoghourt that expires in 2013
    That qoute, is the best reason why we stay alive!

  4. #4
    Kallisti's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,019
    Reputation
    52
    Thanks
    376
    My Mood
    In Love
    Gay.
    Why wont you ever use a for loop? Theyre quite useful. Heres an example.
    [php]for(int i; i > 0; i++)
    cout << "Gay poem is gay";
    [/php]

    未来が見えなくて怖いから
    未来が見えてしまって悲しいから
    目を閉じて優しい思い出に浸ってしまう




  5. #5
    `Bobs Bees's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    930
    Reputation
    33
    Thanks
    183
    My Mood
    Relaxed
    Easier way..
    Code:
    Int main ()
    {
    int i;
    i = This is a gay poem ;
    
    cout << i << endl ;
    cout << i << endl ;
    cout << i << endl ;
    cout << i << endl ;
    cout << i << endl ;
    // Keep copying and pasteing XD
    
    cin.get() ;
    Return 0;
    }
    User CP -> Edit Signature -> Make less then one line.

  6. #6
    Kallisti's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,019
    Reputation
    52
    Thanks
    376
    My Mood
    In Love
    Quote Originally Posted by `Bobs Bees View Post
    Easier way..
    Code:
    Int main ()
    {
    int i;
    i = This is a gay poem ;
    
    cout << i << endl ;
    cout << i << endl ;
    cout << i << endl ;
    cout << i << endl ;
    cout << i << endl ;
    // Keep copying and pasteing XD
    
    cin.get() ;
    Return 0;
    }
    Fail code is fail. Forgot to put using namespace std;
    Youd have to declare i a string. Learn to code
    Heres what your code would look like if it was correct
    [php]
    #include <iostream>
    #include <string>
    using namespace std;

    int main()
    {
    string i;
    i = "I really can't code at all!\n";
    //Copy and paste like a noob

    cout << i << '\n';
    return 0;
    } [/php]

    Or better Yet if it is the Non-retard way
    [php]
    #include <iostream>
    #include <string>
    using namespace std;

    int main()
    {
    string i;
    i = "I really can't code at all!\n";
    while(true)
    cout << i << '\n';
    return 0;
    }
    [/php]

    Last edited by Kallisti; 08-01-2010 at 07:25 AM.

    未来が見えなくて怖いから
    未来が見えてしまって悲しいから
    目を閉じて優しい思い出に浸ってしまう




  7. #7
    `Bobs Bees's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    930
    Reputation
    33
    Thanks
    183
    My Mood
    Relaxed
    Quote Originally Posted by TailsTehFox View Post

    Fail code is fail. Forgot to put using namespace std;
    Youd have to declare i a string. Learn to code
    Heres what your code would look like if it was correct
    [php]
    #include <iostream>
    #include <string>
    using namespace std;

    int main()
    {
    string i;
    i = "I really can't code at all!\n";
    //Copy and paste like a noob

    cout << i << '\n';
    return 0;
    } [/php]

    Or better Yet if it is the Non-retard way
    [php]
    #include <iostream>
    #include <string>
    using namespace std;

    int main()
    {
    string i;
    i = "I really can't code at all!\n";
    while(true)
    cout << i << '\n';
    return 0;
    }
    [/php]


    Why would you need to call <string>
    Last edited by `Bobs Bees; 08-01-2010 at 07:26 AM.
    User CP -> Edit Signature -> Make less then one line.

  8. #8
    fvestrgenrl's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    172
    Reputation
    9
    Thanks
    26
    Dude it's a fucking poem not a cpp tutorial request LOL
    Quote Originally Posted by fallon View Post
    hi i have make a hack and with hot keys but when i start it combat arms close down


    i use this code



    Code:
    PushToConsole("SkelModelStencil (V_F9)1");
    PushToConsole("ShowFps (V_INSERT");
    PushToConsole("ActivationDistance 999999(V_F6)" );
    PushToConsole("DisableCrosshair (V_NUMPAD 1" );
    PushToConsole("CrossHairR 255(V_NUMPAD 2) ");
    PushToConsole("ReloadSpeed 0.000000(V_F5) ");
    }
    Learning C++
    Pg 33/1225
    2.7%

  9. #9
    Kallisti's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,019
    Reputation
    52
    Thanks
    376
    My Mood
    In Love
    Quote Originally Posted by `Bobs Bees View Post
    Read sig

    The chapter on Variable types is usually the first 2 or 3.


    Youd need to call string because String is a header file. It declares what a string is. Without it youd get compile errors
    Last edited by Kallisti; 08-01-2010 at 07:30 AM.

    未来が見えなくて怖いから
    未来が見えてしまって悲しいから
    目を閉じて優しい思い出に浸ってしまう




  10. #10
    `Bobs Bees's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    930
    Reputation
    33
    Thanks
    183
    My Mood
    Relaxed
    Quote Originally Posted by TailsTehFox View Post



    The chapter on Variable types is usually the first 2 or 3.
    Gimme teh book link NAO.



    Useing antirtfm aka the guy on youtube (Seal pointed me to him >.>)
    User CP -> Edit Signature -> Make less then one line.

  11. #11
    Kallisti's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,019
    Reputation
    52
    Thanks
    376
    My Mood
    In Love
    Quote Originally Posted by `Bobs Bees View Post
    Gimme teh book link NAO.



    Useing antirtfm aka the guy on youtube (Seal pointed me to him >.>)
    I use a REAL book (hard copy)

    未来が見えなくて怖いから
    未来が見えてしまって悲しいから
    目を閉じて優しい思い出に浸ってしまう




  12. #12
    `Bobs Bees's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    930
    Reputation
    33
    Thanks
    183
    My Mood
    Relaxed
    Quote Originally Posted by TailsTehFox View Post


    I use a REAL book (hard copy)
    Gimmeh teh link to purchase da book.
    User CP -> Edit Signature -> Make less then one line.

  13. #13
    Kallisti's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,019
    Reputation
    52
    Thanks
    376
    My Mood
    In Love
    Quote Originally Posted by `Bobs Bees View Post
    Gimmeh teh link to purchase da book.
    go to bewk stoar

    未来が見えなくて怖いから
    未来が見えてしまって悲しいから
    目を閉じて優しい思い出に浸ってしまう




  14. #14
    `Bobs Bees's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    930
    Reputation
    33
    Thanks
    183
    My Mood
    Relaxed
    Quote Originally Posted by TailsTehFox View Post


    go to bewk stoar
    bewk stoar to far awayz
    (2hour drive)
    User CP -> Edit Signature -> Make less then one line.

  15. #15
    Kallisti's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,019
    Reputation
    52
    Thanks
    376
    My Mood
    In Love
    Quote Originally Posted by `Bobs Bees View Post
    bewk stoar to far awayz
    (2hour drive)
    Amazon.com: Sams Teach Yourself C++ in One Hour a Day (6th Edition) (9780672329418): Jesse Liberty, Siddhartha Rao, Bradley L. Jones: Books
    850 pages. Read up boi

    未来が見えなくて怖いから
    未来が見えてしまって悲しいから
    目を閉じて優しい思い出に浸ってしまう




Page 1 of 2 12 LastLast

Similar Threads

  1. DBB's Poem
    By Dave84311 in forum Art & Graphic Design
    Replies: 20
    Last Post: 08-06-2009, 01:18 PM
  2. my 2 poem
    By M2A in forum General
    Replies: 11
    Last Post: 03-30-2009, 11:06 PM
  3. my poem :D
    By M2A in forum General
    Replies: 18
    Last Post: 03-28-2009, 07:31 PM
  4. a hackers poem
    By blue213321 in forum WarRock - International Hacks
    Replies: 14
    Last Post: 03-07-2009, 09:42 AM
  5. My Poem
    By XxiToXiCxX in forum Spammers Corner
    Replies: 1
    Last Post: 02-14-2009, 07:38 PM