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
~637 People Reached
Favorite Forums
Favorite Tags
Member Avatar for brizhou

Can someone please conver the following code into a sequence diagram for me? the 4 instances and classes with the life lines are: `theUI:UserInterface`, `theCashPoint:CashPoint`, `theActiveAccount:BankAccount` and `transactions:TransactionList` void CashPoint::m4_produceStatementForBankAccount() const { string statement( p_theActiveAccount_->prepareFormattedStatement()); theUI_.showStatementOnScreen( statement); } string BankAccount::prepareFormattedStatement() const { ostringstream os; //account details os << prepareFormattedAccountDetails(); //list …

Member Avatar for ShawnCplus
0
103
Member Avatar for brizhou

Please can you help me with the following question? An iterative version of the C++ function TransactionList::getTransactionsForDate is given below. It can be applied to any list of transactions and returns the list of all the transactions for the given date. It only works when the date given is valid. …

Member Avatar for ShawnCplus
0
130
Member Avatar for brizhou

I need to implement an online auction as a client-server application (not Web based) Th auction should involve just two items for which people may bid. At the start of the application, the server will expect to be told the final bidding time for each of the two items, using …

0
53
Member Avatar for brizhou

what code can i use so that if the coodinates of a mouse represented by symbol @ goes over coodinates of apples representedby symbols & and makes the & disappear on the grid? im thinking which would be more effiecient, the if or switch statement

Member Avatar for CoolGamer48
0
81
Member Avatar for brizhou

A programmer has been asked to implement a simple game that requires the use of a board to position and manipulate some objects represented by symbols. The programmer has implemented the board as a two-dimensional array of characters. The following constants have been declared as global to the whole program: …

Member Avatar for ssharish2005
0
156
Member Avatar for brizhou

1) The following C++ program reads in a number, checks that it is a three-digit integer and, if it is, echoes it on the screen in the reverse order. It uses a C++ function, called isolateDigits, which takes in a 3-digit integer number and returns the three digits that make …

Member Avatar for doddware
0
114