fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int op(int i, int j = 1)
  6. {
  7. return i * j;
  8. }
  9.  
  10. int op(char a, char b)
  11. {
  12. return b - a;
  13. }
  14.  
  15. int op(float x, float y)
  16. {
  17. return x / y;
  18. }
  19.  
  20. int main()
  21. {
  22. cout << op(2) << op('c', 'a') << op(4.f, 2.f);
  23. }
  24.  
  25.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
2-22