c++ data representiaton

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • luap
    New Member
    • Mar 2007
    • 40

    c++ data representiaton

    I am have just starting learning c++. I just want to know how I could represent a very large data containing students, universities .Each student is allowed to make a choice of at most six universities he or she would like to attend.
    For some universities there is only limited numbers places for the students avaliable. Some student are choosen based on their average grade.

    My Question is how best can i solve this problem?

    1. How to represent the large data with students and universities?
    2 How to read this data with the complier from a sourde file.
  • horace1
    Recognized Expert Top Contributor
    • Nov 2006
    • 1510

    #2
    Originally posted by luap
    I am have just starting learning c++. I just want to know how I could represent a very large data containing students, universities .Each student is allowed to make a choice of at most six universities he or she would like to attend.
    For some universities there is only limited numbers places for the students avaliable. Some student are choosen based on their average grade.

    My Question is how best can i solve this problem?

    1. How to represent the large data with students and universities?
    2 How to read this data with the complier from a sourde file.
    haave read of
    http://www.cplusplus.c om/doc/tutorial/

    in particular Data Structures, Classess and input/output with files

    Comment

    Working...