Thread: Tell me a easy program to make PLEASE!! PLEASE PLEASE!!!!

  1. #16
    Registered User
    Join Date
    Mar 2002
    Posts
    249
    Tell ya what, why don't you take a closer look at nested loops You won't need to store '*' in any variable, just output it. Also, always use
    Code:
    int main()
    ::EDIT::

    This page has some neat tutorials/examples as well to help get you started.
    Last edited by funkydude9; 08-10-2003 at 09:25 PM.
    Well, there are a few things wrong with your code:

    1) It does not work.
    2) It does not work.
    3) It does not work.

    Hope this helps.

  2. #17
    Registered User
    Join Date
    Jul 2003
    Posts
    97
    WOOHOO!! i debugged by myself and got it.-

    Code:
    #include <iostream.h>
    
    int main()
    {
     int x=0;
     while(x<6)
     {
    	cout << x << endl;
    	x++;
    
      }
    return 0;
    }
    but now, how to i make them stars? the * things

  3. #18
    Registered User
    Join Date
    Jul 2003
    Posts
    97
    Originally posted by funkydude9
    Tell ya what, why don't you take a closer look at nested loops You won't need to store '*' in any variable, just output it. Also, always use
    Code:
    int main()

    ok, lemme try that tut. looks cool. brb

  4. #19
    Registered User
    Join Date
    Jul 2003
    Posts
    97
    seems like ill have to ask the user to make the character *. i cant find out how to make it output that without asking the user.

    EDIT-im am complete shutdown/ im so confused. on how to hav the *

  5. #20
    Registered User
    Join Date
    Feb 2002
    Posts
    73
    I recommend that you try and learn more C++. That is quite a project in itself! ^_^

  6. #21
    Registered User
    Join Date
    Jul 2003
    Posts
    97
    Originally posted by Zoalord
    I recommend that you try and learn more C++. That is quite a project in itself! ^_^


    like??

  7. #22
    Toaster Zach L.'s Avatar
    Join Date
    Aug 2001
    Posts
    2,686
    Code:
    cout << '*';
    The word rap as it applies to music is the result of a peculiar phonological rule which has stripped the word of its initial voiceless velar stop.

  8. #23
    Registered User
    Join Date
    Mar 2002
    Posts
    249
    like??
    Reply after you have read and understood the first couple of tutorials on this site, and if you still don't understand what your're reading check out the site that I posted in my last post. That should give you a good start.
    Well, there are a few things wrong with your code:

    1) It does not work.
    2) It does not work.
    3) It does not work.

    Hope this helps.

  9. #24
    Registered User
    Join Date
    Jul 2003
    Posts
    97
    Originally posted by funkydude9
    Reply after you have read and understood the first couple of tutorials on this site, and if you still don't understand what your're reading check out the site that I posted in my last post. That should give you a good start.

    uh oh. people r getting annoyed. see, im stupid. i should just go and kill myself. i always make others mad because i cant do anything without some1's help. i should just end my life...........make people like funkydude9 happier........

  10. #25
    plzduntlakliekthiskthx
    Join Date
    Oct 2002
    Posts
    138
    Originally posted by oobootsy1
    uh oh. people r getting annoyed. see, im stupid. i should just go and kill myself. i always make others mad because i cant do anything without some1's help. i should just end my life...........make people like funkydude9 happier........
    naaah... Just try to make more of an effort before asking. Buy a book maybe? And do not post a new book thread or you will get flamed . Use the search!

  11. #26
    Registered User
    Join Date
    Jul 2003
    Posts
    97
    i got a book. but it is kinda big and kinda confusing in parts. instead of showing like the while loop in a small program, it shows it in a 10page program.

  12. #27
    Registered User
    Join Date
    Mar 2002
    Posts
    249
    There are plenty of good books out there and even some free ones. (type c++ in the search on that page). The tutorials on this site are very short and to the point; you should really read them over carefully, and experiment with them. They're a good place to start.

    Also, Google is your friend.
    Well, there are a few things wrong with your code:

    1) It does not work.
    2) It does not work.
    3) It does not work.

    Hope this helps.

  13. #28
    Toaster Zach L.'s Avatar
    Join Date
    Aug 2001
    Posts
    2,686
    Time for a new book then. Do a search. You'll find plenty about books here. A good idea would be just to go to a book store, and look through the various books for a while, to find one that suits your learning style.

    Cheers
    The word rap as it applies to music is the result of a peculiar phonological rule which has stripped the word of its initial voiceless velar stop.

  14. #29
    plzduntlakliekthiskthx
    Join Date
    Oct 2002
    Posts
    138
    Originally posted by oobootsy1
    i got a book. but it is kinda big and kinda confusing in parts.
    What book do you have?

  15. #30
    Registered User
    Join Date
    Mar 2002
    Posts
    249
    What book do you have?
    He must have: "The Big C++ Book" by Jo Confused
    Well, there are a few things wrong with your code:

    1) It does not work.
    2) It does not work.
    3) It does not work.

    Hope this helps.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Need help with this program I'm trying to make
    By Sshakey6791 in forum C++ Programming
    Replies: 14
    Last Post: 12-01-2008, 04:03 PM
  2. Replies: 9
    Last Post: 06-17-2008, 11:38 AM
  3. Writing a program to make a calendar
    By Northstar in forum C Programming
    Replies: 17
    Last Post: 11-07-2007, 11:34 AM
  4. how do you make a program send data to the printer?
    By Sintu in forum C++ Programming
    Replies: 19
    Last Post: 10-20-2005, 07:22 PM
  5. How do you make your program record keystrokes
    By aaroroge in forum C++ Programming
    Replies: 1
    Last Post: 06-25-2005, 06:55 AM