[prog] Re: C++

Sue Stones suzo at spin.net.au
Sat Mar 13 15:07:16 EST 2004


On Sat, 13 Mar 2004 01:24 pm, wolf wrote:
> Could anyone help me along with getting this to work? Here's the
> original question I'm trying

G'day Wolf,
Can you be specific about what you are stuck on at the moment?
sue


> to figure out:
> > write a simple program to track an individual's cd library, the
> > program should permit the user to enter 10 cds. Each cd
> > should contain the following items: artist, album title, year and
> > genre. the program should display all the cds in order
> > by artist.  design a class and represent each album as an object of
> > that class. provide the capability to store the data
> > in a text file and retrieve it again the next time the program is run.
>
> #include <iostream>
> using namespace std;
>
> class cdlib
>
> {
>
> 	 char artist[30];  
>
> 	 char title[50];
>
> 	 int yr;
>
> 	 char genre[10];
>
> 	 
>
>  public:
>
> 	 void getdata();
>
>       void showdata();
>
> 	 void putdata();
>
> };
>
> int main()
> {
>
> int cd;
>
>   /* get the data from the user and write it down to a text file. use
> cin */
> 	while (cd < 10)
> {
> 	   cout << "Enter the Artist's Name: "<< endl;
> 	   cin >> artist;
> 	   cout << "Enter the Compact Disk Title: " << endl;
> 	   cin >> title;
> 	   cout << "Enter the Year the CD was recorded: "<< endl;
> 	   cin >> yr;
> 	   cout << "Enter the genre for this CD: " << endl;
> 	   cin >> genre;
> 	}
>
> return 0;
> }
> 	   /* to put data into the file  fopen, fwrite */
>
> 	    putdata()
>
>
> }
>
>  
>
> getdata()
>
> {
>
> 	/* Read the data from the file  fopen. fread */
> 	return data;
> }
>
>  _______________________________________________
> Programming mailing list
> Programming at linuxchix.org
> http://mailman.linuxchix.org/mailman/listinfo/programming



More information about the Programming mailing list