Forum: C++ Jun 1st, 2005 |
| Replies: 8 Views: 2,370 Hi Eager,
I can't understand from your question how the output should be organized. I will help you with a function that reads records from file using your format and stores them in a vector. You... |
Forum: Computer Science May 13th, 2005 |
| Replies: 1 Views: 11,998 Hi,
The software development life cycle is something that changes from company to company. Here is the average life cycle:
1. Requests from customers/original idea.
2. Creation of feature lists... |
Forum: Computer Science May 10th, 2005 |
| Replies: 6 Views: 2,951 Hi JMK,
Two things:
1. It's excellent that you have ideas for software. But never ever post the complete concept in a public forum, because the internet is a mean environment, and any good idea... |
Forum: C++ May 9th, 2005 |
| Replies: 9 Views: 1,816 Hi there,
In my opinion, your code is beyond repair. You don't need help with your code, you need someone to teach you the basics of programming.
If you post what it is that you want your program... |
Forum: Computer Science May 6th, 2005 |
| Replies: 6 Views: 13,318 Hi Guys,
The code above has a mistake in the most important line of code:
if (month >= currentMonth && day >= currentDay)
it must be replaced by this:
if ((month > crtMonth) || ( month ==... |