fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int fun(long a) {
  5. return a / a;
  6. }
  7.  
  8. int fun(int a) {
  9. return 2 * a;
  10. }
  11.  
  12. int fun(double a = 3.0) {
  13. return a;
  14. }
  15.  
  16. int main() {
  17. cout << fun(1000000000L) << fun (1L) << fun(1.f);
  18. return 0;
  19. }
  20.  
  21.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
111