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
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 7
Member Avatar for roidbeginner

I am still at beginner stage in c++ and I am always curious about good/best coding method. let's say I have a program which allows a users to edit the salary of a employee. 1)The system will prompt the user which to key in a employee's name first. 2)The system …

Member Avatar for Dani
0
115
Member Avatar for roidbeginner

I have text file that contains username and password userandPassword.txt chris ABC jane DEF john DEF I am tryng to Decrypt the password using caesar cipher, with a key of 3 from the text file. which means that if I key in username: chris and password:XYZ, it will login successfully. …

Member Avatar for roidbeginner
0
1K
Member Avatar for roidbeginner

I asked this question yesterday http://stackoverflow.com/questions/20908568/calculating-daily-and-monthly-sales-from-text-file and now I have come up with this code: **stock.h** #ifndef stock_stock_h #define stock_stock_h #include <iostream> class stock { public: stock() { itemName = " "; unitPrice = " "; quantityPurchased = " "; day = " "; month = " "; year = …

Member Avatar for roidbeginner
0
305