Thread: Has Anyone Made

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Super Moderater.
    Join Date
    Jan 2005
    Posts
    374
    Code:
    /*has anyone made a program where u type your name in and it co
    mes up with something like
    i type barry and it comes up with i hate you barry
    etc has anyone got the code for this
    */
    #include <iostream>
    
    int main()
    {
        char name[81];
        std::cout<<"What is your name:";
        std::cin>>name;
        std::cout<<"I hate you "<<name;
        std::cin.get();
        std::cin.get();
    }

  2. #2
    Registered User
    Join Date
    Aug 2005
    Posts
    15
    thanks i will next time cheers treenef you ace i forgot to put 2 of std::cin.get();. these in the code thanks
    Newbie

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Small 3D Art Gallery I made
    By BobMcGee123 in forum A Brief History of Cprogramming.com
    Replies: 0
    Last Post: 07-06-2005, 06:03 PM
  2. nifty little thing i made
    By DavidP in forum C++ Programming
    Replies: 1
    Last Post: 12-05-2003, 11:43 PM
  3. check out this cool program i made
    By Leeman_s in forum C++ Programming
    Replies: 9
    Last Post: 12-19-2002, 10:02 PM
  4. What's the best program you have ever made?
    By Kevin.j in forum A Brief History of Cprogramming.com
    Replies: 31
    Last Post: 10-02-2002, 11:29 AM
  5. home made movies and animations
    By iain in forum A Brief History of Cprogramming.com
    Replies: 2
    Last Post: 09-02-2001, 11:16 AM