fork download
  1. #include <iostream>
  2. #include <cmath>
  3. #include <string>
  4. using namespace std;
  5.  
  6. int main() {
  7. cout << "What is the amount deposited it monthly?\n" << "$500 (in each month)\n";
  8. cout << "What is the Amount withdrawn from the account during the month\n"<< "$200 (for each month)\n";
  9.  
  10. cout << "Calculate the the monthly interest";
  11.  
  12.  
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
What is the amount deposited it monthly?
$500 (in each month)
What is the Amount withdrawn from the account during the month
$200 (for each month)
Calculate the the monthly interest