PSP Help.

Please support our C++ advertiser: Intel Parallel Studio Home
Reply

Join Date: Sep 2004
Posts: 3
Reputation: jwilcox is an unknown quantity at this point 
Solved Threads: 0
jwilcox jwilcox is offline Offline
Newbie Poster

PSP Help.

 
1
  #1
Sep 5th, 2004
Could some one help me with writing this code in C++. I'm taking a course called PSP, personal software process. The program i have to write is : store and retrieve a series of n real numbers into and from a file. On entry, the program should accept integer or real numbers and store them as real numbers. The user functions to be provided by this program are as follows: The user enters the file name. The user selects either the read or write mode. For read, the program displays the numbers in the file, one per line. For write, the user enters the quantity of numbers to be recorded followed by entry of all the numbers, one at a time. Do I need to write a class to do this? Do i use fstreams? I'm really inexperienced with coding. My place of business is making me take this course. I'd even pay someone(paypal) to help me write this code.
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 3
Reputation: jwilcox is an unknown quantity at this point 
Solved Threads: 0
jwilcox jwilcox is offline Offline
Newbie Poster

Re: PSP Help.

 
0
  #2
Sep 5th, 2004
Could someone help me write some code for this?
Reply With Quote Quick reply to this message  
Join Date: Mar 2004
Posts: 219
Reputation: BountyX is an unknown quantity at this point 
Solved Threads: 7
BountyX's Avatar
BountyX BountyX is offline Offline
Code Guru

Re: PSP Help.

 
1
  #3
Sep 6th, 2004
I'll help you, but not for free . I'm very busy ( I own my own Software Development Company), just give me an email b*o*u*n*t*y*x*@*b*o*u*n*t*y*.*n*e*t (remove the stars)
A Hacker's Mind:
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes..." - J.D.Salinger
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 2
Reputation: netchicken is an unknown quantity at this point 
Solved Threads: 0
netchicken netchicken is offline Offline
Newbie Poster

Re: PSP Help.

 
1
  #4
Sep 6th, 2004
not me, do your OWN course work. Asking people to help you is no way to learn, and that is the primary task.
Reply With Quote Quick reply to this message  
Join Date: Jun 2004
Posts: 436
Reputation: Chainsaw is an unknown quantity at this point 
Solved Threads: 10
Chainsaw's Avatar
Chainsaw Chainsaw is offline Offline
Unprevaricator

Re: PSP Help.

 
1
  #5
Sep 6th, 2004
To help organize your thoughts, how about:

display a prompt to get the file name
read the filename from the console

display a prompt to get the mode (read/write)
read the mode from the console

if read-mode, open the file for read, while not eof, read the line, display it; when eof close the file.

if write-mode, open the file for write, get from the user the number of numbers to read, read each one and write it to the file, close the file.

Something like that. fstream would work, but so would fopen/fgets/fputs. no classes are needed, but maybe part of the assignment is to make a class to do some/all of this?

Good luck! Post some code if you get stuck.
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 3
Reputation: jwilcox is an unknown quantity at this point 
Solved Threads: 0
jwilcox jwilcox is offline Offline
Newbie Poster

Re: PSP Help.

 
0
  #6
Sep 7th, 2004
I wasn't asking anyone to write this code for me. I just needed some tips, thanks chainsaw.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the C++ Forum
Thread Tools Search this Thread



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

©2003 - 2009 DaniWeb® LLC