CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2003
    Posts
    4

    Angry Need a little bit of help

    I am trying to write a program that allows user defined entry of unlimited float numbers. I forgotten what it is I need to use write this.I am new to C++ and still learnig . I would greatly appreciate any help you can give me thanks.

  2. #2
    Join Date
    May 2000
    Location
    Phoenix, AZ [USA]
    Posts
    1,347
    There are many different ways to solve this problem; chances are
    you'll need to use whatever concepts you're currently learning
    in class [ie: examine the chapter you guys are on].

    This calls for the talents of "dynamic memory". Look up 'new' and
    'delete'. If you don't want to deal with that, you can use a
    vector. In fact, I'd probably deal with a vector of floats myself.

    --Paul

  3. #3
    Join Date
    Apr 2003
    Posts
    4
    thanks paul for your help...........I am gonna check this out

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured