| | |
C++ help
Please support our C++ advertiser: Programming Forums - DaniWeb Sister Site
![]() |
•
•
Join Date: Jun 2005
Posts: 1
Reputation:
Solved Threads: 0
Now we are doing pseudocode and looping.On my assignment I believe i should do a sentinel controlled loop?
But i really don't know.It says this:
Develop an MC++ application that will determine if a department store customer has exceeded the limit on a charge account.For each customer,the following facts are available:a)Account number
b)Balance at the beginning of the month
c)Total of all items charged by this customer
d)Total of all credits applied to this customer's account this month
e)Allowed credit limit
Hint:Users should input as integers each of these facts,calculate the new balance (=beginning balance + charges - credits), display the new balance and determine if the new balance exceeds the customer's credit limit.For those customers whose credit limit is exceeded,the program should display the message,"Credit limit exceeded"....the credit limit is 400
#include "stdafx.h"
#using <mscorlib.dll>
using namespace system
But i really don't know.It says this:
Develop an MC++ application that will determine if a department store customer has exceeded the limit on a charge account.For each customer,the following facts are available:a)Account number
b)Balance at the beginning of the month
c)Total of all items charged by this customer
d)Total of all credits applied to this customer's account this month
e)Allowed credit limit
Hint:Users should input as integers each of these facts,calculate the new balance (=beginning balance + charges - credits), display the new balance and determine if the new balance exceeds the customer's credit limit.For those customers whose credit limit is exceeded,the program should display the message,"Credit limit exceeded"....the credit limit is 400
#include "stdafx.h"
#using <mscorlib.dll>
using namespace system
Hmm. Something like this?
credit_limit = 400;
credit_total = 0;
balance = 0;
charges_remaining = something;
while ( charges_remaining )
{
charges = get_charges();
credits = get_credits();
balance = balance + charges - credit
if ( credit_total > credit_limit )
{
error_message();
}
charges = charges - 1;
} "One of the methods used by statists to destroy capitalism consists in establishing controls that tie a given industry hand and foot, making it unable to solve its problems, then declaring that freedom has failed and stronger controls are necessary." --Ayn Rand
![]() |
Other Threads in the C++ Forum
- Previous Thread: Printing a Queue to file
- Next Thread: Function templates question
Views: 1287 | Replies: 1
| Thread Tools | Search this Thread |
Tag cloud for C++
6 api application array arrays based beginner binary bmp c++ c/c++ calculator char char* class classes code compile compiler console conversion convert count data delete deploy dll download dynamiccharacterarray email encryption error file format forms fstream function functions game givemetehcodez graph homeworkhelp iamthwee ifstream input int java lib lines list loop looping loops map math matrix memory newbie news number numbertoword output pointer problem program programming project python random read recursion recursive reference return rpg search simple sort sorting spoonfeeding string strings struct temperature template templates text tree url variable vector video visual visualstudio void win32 windows winsock wordfrequency wxwidgets






