No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Re: 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 can use this vector to play with the data. Code: [code]#include <iostream> #include <fstream> … | |
Re: 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 == crtMonth && day > crtDay)) The rest is fine. Regards arit | |
Re: 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 that you post will be stolen, for sure. 2. If I understand your idea correctly, … | |
Re: 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 based on item 1. 3. Technical design of features based on item 2. 4. Software design and time evaluation, based … | |
Re: 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 to do, maybe we can help you. Regards arit |
The End.