Forum: Java Sep 15th, 2008 |
| Replies: 9 Views: 2,515 so would it be ok to say that
int i = getHundreds();
and this would be under the hundredsToString() method correct? |
Forum: Java Sep 15th, 2008 |
| Replies: 9 Views: 2,515 I think my main area of confusion is the hundredsToString() method and the others that follow, im not quite sure how to go about them?? Also can you please explain to me how to go about testing each... |
Forum: Java Sep 12th, 2008 |
| Replies: 9 Views: 2,515 The number 1234 would have to be One thousand and two hundreds and thirty four. He wants the first letter in CAPs and then if the number is more than 1 in the 1000s or 100s position it has to be in... |
Forum: Java Sep 12th, 2008 |
| Replies: 9 Views: 2,515 The number 1234 would have to be One thousand and two hundreds and thirty four. He wants the first letter in CAPs and then if the number is more than 1 in the 1000s or 100s position it has to be in... |
Forum: Java Sep 11th, 2008 |
| Replies: 9 Views: 2,515 Hi, I need help on this assignment I have, the question asks to write a program that reads a non-negative integer number (4 digits maximum) and writes that number in words. it gives me:
Private... |
Forum: C++ Jul 26th, 2008 |
| Replies: 11 Views: 2,627 |
Forum: C++ Jul 26th, 2008 |
| Replies: 11 Views: 2,627 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: 2,627 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: 2,627 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: 2,627 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: 2,627 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: 394 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: 394 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... |