Forum: C++ Jul 26th, 2008 |
| Replies: 11 Views: 3,045 |
Forum: C++ Jul 26th, 2008 |
| Replies: 11 Views: 3,045 Alright guys, I just figured it out right now, I had the expected array listed as SIZE which meant there were 13 saved slots, I was only putting in originally 11, so that's why I was missing two... |
Forum: C++ Jul 25th, 2008 |
| Replies: 11 Views: 3,045 So here's what I have so far, I know it's not correct but I think im on the right path, can someone let me know whats wrong, it's either the expected values in the list or it has something to do with... |
Forum: C++ Jul 25th, 2008 |
| Replies: 11 Views: 3,045 I think im getting confused when it says to /* Write a declaration of array exprected here. Assign an initializer list containing the expected values here. Use SIZE for the number of elements */
... |
Forum: C++ Jul 25th, 2008 |
| Replies: 11 Views: 3,045 Sum Total Expected Actual
2 1000 2.778% 2.778%
3 1958 5.556% 5.439%
4 3048 8.333% 8.467%
5 3979 11.111% 11.053%
6 5007 ... |
Forum: C++ Jul 25th, 2008 |
| Replies: 11 Views: 3,045 Hey everybody, I seem to be stuck on this rolling dice problem I received on one of my lab exercises. Can somebody get me started on the right path. Here's a description of the problem along with the... |
Forum: C++ Jun 12th, 2008 |
| Replies: 3 Views: 404 Sorry about that!! hope this is right
//Lab 2 Account.h
//Definition of the Account class
class Account
{
public:
Account( int );
void credit( int );
void debit( int ); |
Forum: C++ Jun 12th, 2008 |
| Replies: 3 Views: 404 I need help where it say /* write code to withdrawal money from account1 */.. i think the member function is written right but im not sure.
Im a true begginer taking this online course and I think i... |