Search:

Type: Posts; User: Sintu

Search: Search took 0.00 seconds.

  1. I feel like I am being kind of needy, so I am...

    I feel like I am being kind of needy, so I am going to finish my C++ book then debug my program. If I still need help, I will be back (of course...)
  2. Uh, ya, thats why it's there. Lol, no, I would...

    Uh, ya, thats why it's there. Lol, no, I would have just left it there if you hadn't pointed it out to me! Or do I need it because main() isn't declared as void? I tried your edited version of the...
  3. It still doesn't work, I have no idea what's...

    It still doesn't work, I have no idea what's wrong. Ugg, I'm only on chapter 5 in my C++ book...
  4. O.K. guys I tried. I really did. But, I can't...

    O.K. guys I tried. I really did. But, I can't seem to find the bug in my program. My compiler gives me an error that says "Invalid conversion from "char" to "char" on line 36.


    #include...
  5. I used #include to try and find fstreams. My...

    I used #include to try and find fstreams. My compiler said it couldn't find the file.

    I apologize. My capitalization and punctuation have been slipping ever since I started using MSN. ;) I will...
  6. my compiler cant seem to find fstreams. Here is...

    my compiler cant seem to find fstreams. Here is my code so far. it cant print yet.


    #include <iostream>


    char liftName;
    int Max;
  7. thats great, but I dont understand exactly what...

    thats great, but I dont understand exactly what you guys are doing to send the data to a file. sorry, just started programming less then a week ago...
  8. thats an idea. i might just use that. If I...

    thats an idea. i might just use that. If I understood it...
  9. Windows XP SP2, idk what kind of printer the...

    Windows XP SP2, idk what kind of printer the school would use... probably a usb or network printer... maybe serial, but I doubt it.
  10. how do you make a program send data to the printer?

    Do you guys know how to make your program print some data? The reason I ask is in our school we have an ANCIENT computer in the weight room that we use to make a lifting schedule based on maxes that...
  11. Replies
    9
    Views
    1,181

    you forgot to type "std::" before cout and cin. (...

    you forgot to type "std::" before cout and cin. ( I dont know if its nessessary, but you could try it anyway)... I try...
  12. Replies
    11
    Views
    1,331

    Lol, I understand about 25% of that code. :D ...

    Lol, I understand about 25% of that code. :D Just started programming four days ago... :D Thanks for the help!
  13. Replies
    11
    Views
    1,331

    What do you mean not the best? It works great!...

    What do you mean not the best? It works great! Plus it displays that cool "Press any key to continue..." line of text! Thank you! :D
  14. Replies
    9
    Views
    3,488

    int can only hold values of -32,768 through...

    int can only hold values of -32,768 through 32,767. Try compling this bit of code (Taken from SAMS Teach Yourself C++ In 24 Hours)


    #include <iostream>

    int main()
    {
    int smallNumber;
    ...
  15. Replies
    11
    Views
    1,331

    My program exits on me right away!

    Hi,
    I just started programming three days ago and I am having a little problem. When I run a program I have made that doesnt require any input (like Hello World!), the DOS window will open and...
Results 1 to 15 of 15