Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~1K People Reached
Favorite Tags
c++ x 2

5 Posted Topics

Member Avatar for Eager Student

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> …

Member Avatar for diannetots
0
283
Member Avatar for phr0stbyt3

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

Member Avatar for The Dude
0
191
Member Avatar for <<J_M_K>>

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, …

Member Avatar for Dogtree
0
218
Member Avatar for marjan_m

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 …

Member Avatar for arit
0
107
Member Avatar for nizar4445

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

Member Avatar for sinrtb
0
307

The End.