#include <iostream>
using namespace std;


string order_ice_cream (string flavor, int scoops = 2, string cone_or_dish = "cone") {
  string order = "You ordered " + to_string(scoops) + " scoops of " + flavor + " ice cream in a " + cone_or_dish + ".";
  return order;
}

int main() {
  cout << order_ice_cream("chocolate") << endl;
  cout << order_ice_cream("vanilla", 5) << endl;
  cout << order_ice_cream("mint", 5, "dish") << endl;
  return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: