fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. template<typename T>
  5. T findSum(T value,T value2) {
  6. T result;
  7. result=value+value2;
  8. return result;
  9. }
  10. int main() {
  11. string str1,str2;
  12. str1="fi";
  13. str2="sh";
  14. cout<<findSum(5,4)<<endl;
  15. cout<<findSum(3.14,5.67)<<endl;
  16. cout<<findSum(str1,str2)<<endl;
  17. cout<<findSum('A','6');
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
9
8.81
fish
w