fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. double price = 50.25;
  6. double tax = 23;
  7.  
  8. std::cout << price + price * (tax / 100.0);
  9. }
Success #stdin #stdout 0s 2728KB
stdin
Standard input is empty
stdout
61.8075