C++ Address book

Please support our C++ advertiser: Intel Parallel Studio Home
Thread Solved

Join Date: Oct 2007
Posts: 3
Reputation: AXAsianXie is an unknown quantity at this point 
Solved Threads: 0
AXAsianXie AXAsianXie is offline Offline
Newbie Poster

C++ Address book

 
0
  #1
Nov 7th, 2007
Hey i have a HW to do an address book storing the names addresses and phone #s and add to address.txt. and the phone is the key so i have to create a search using the phone #. i'm also suppose to use a mygetline function that i don't quite understand yet can someone plz help and give me some ideas.
http://www.cs.fredonia.edu/arnavut/c.../ass4_fa07.pdf
this is the HW link in case u didn't understand what i was saying.
This is what i started with.



#include<iostream.>
using namespace std;

struct Person
{
char Phone[30];
char Address[80];
char Name[50];
};

mygetline(phone); // will read the data up to '\n'
cin.ignore(); // will ignore '\n' and move course one location
mygetline(address); // reads the next input up to '\n'
cin.ignore(); //ignores '\n' and moves course after '\n'
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 15,406
Reputation: Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute 
Solved Threads: 1467
Team Colleague
Featured Poster
Ancient Dragon's Avatar
Ancient Dragon Ancient Dragon is offline Offline
Still Learning

Re: C++ Address book

 
0
  #2
Nov 7th, 2007
The assignment is due Tuesday Nov 8! I hate to inform you but Nov 8 is tomarrow, Thursday. In any event, you are just now starting that assignment ???

Do the program one small step at a time, and compile frequently so that you don't get overwhelmed with errors.

First step is to design the file format. From the looks of that structure each record needs to have the phone, address and name. Since address and/or name can contain spaces I'd suggest surrounding them in the file with quotes or separating them with a comma. The '\n' will be used to separate records.

Next you will need two functions -- one to read a line and save the contents in the structure, probably mygetline() can do that. The other function is to write out the data to the file.

When you get that done, post your results and we'll help with the rest, if you need it. But unfortunately for you I doubt you can complete this assignment by 9:00 am tomarrow morning, which is only 15 hours away in my time zone.
Don't PM me with questions -- you might get a nasty PM in response. If you have a question then post it in one of the forums.
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 10
Reputation: bStiffler582 is an unknown quantity at this point 
Solved Threads: 1
bStiffler582 bStiffler582 is offline Offline
Newbie Poster

Re: C++ Address book

 
0
  #3
Nov 7th, 2007
You're in my class. Who are you? I posted a question about this earlier. I can't get the delete function working.
Last edited by bStiffler582; Nov 7th, 2007 at 9:16 pm.
Reply With Quote Quick reply to this message  
Join Date: Oct 2007
Posts: 3
Reputation: AXAsianXie is an unknown quantity at this point 
Solved Threads: 0
AXAsianXie AXAsianXie is offline Offline
Newbie Poster

Re: C++ Address book

 
0
  #4
Nov 7th, 2007
lol yea i think i sit in the backrow i think i sit next to you
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,652
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 723
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Code Goddess

Re: C++ Address book

 
0
  #5
Nov 8th, 2007
...
I'm here to prove you wrong.
Reply With Quote Quick reply to this message  
Join Date: Dec 2005
Posts: 5,850
Reputation: Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute Salem has a reputation beyond repute 
Solved Threads: 749
Team Colleague
Salem's Avatar
Salem Salem is offline Offline
Void main'ers are DOOMed

Re: C++ Address book

 
0
  #6
Nov 8th, 2007
May as well just visit http://www.cs.fredonia.edu/cswebpage/, click on the "staff" link, figure out which tutor set the homework and then email them directly with a message saying "the following students would like to submit this answer".
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC