fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. // Sales Prediction
  5.  
  6. int main() {
  7. float eastCoast = 0.62; // East Coast Sales Divison's contribution to the total sales represented as a percentage
  8. float companySales = 4.6e6; // Total Sales of the company
  9. int eastCoastPred = eastCoast * companySales; // estimated contribution of East Coast division in dollars
  10. cout << eastCoastPred;
  11. return 0;
  12. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
2852000