fork download
  1. /*******************************************************************************
  2. * Calculate Set Sales With Set Taxes
  3. *
  4. *__________________________________________________________
  5. * Calculate 62% of 4.6 million.
  6. *____________________________________________________________
  7. *OUTPUT
  8. * Code prints the calculated number of 62% of 4.6 million
  9. *******************************************************************************/
  10.  
  11. #include <iostream>
  12. using namespace std;
  13.  
  14. int main() {
  15. cout << 4600000 * .62;
  16. return 0;
  17. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
2.852e+06