Share Pastebin
Guest
Public paste!

fsdfsdfs

By: a guest | Mar 22nd, 2010 | Syntax: None | Size: 0.40 KB | Hits: 78 | Expires: Never
Copy text to clipboard
  1. //moneydemo.cpp
  2. //Program to demonstrate the class Money.
  3.  
  4. int main()
  5. {
  6.     //Create three objects: yourAmount, myAmount (with 10.9 euros), ourAmount
  7.  
  8.     //Read amounts and output amounts
  9.  
  10.  
  11.     //Compare amounts: if same cout << "We have the same amounts.\n" otherwise
  12.     //cout << "One of us is richer.\n";
  13.  
  14.     //Add yourAmount and myAamount
  15.  
  16.     //Output all amounts
  17.  
  18.     return 0;
  19. }