Advertisement
Guest User

Untitled

a guest
Dec 10th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int sum(int a){
  5. return a + 1;
  6. }
  7.  
  8. int sum(double b) {
  9. return b;
  10. }
  11.  
  12. // double sum(double c){
  13. // return c;
  14. // }
  15.  
  16. // double sum(int d){
  17. // return d;
  18. // }
  19.  
  20. main(){
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement