#include <iostream.h>
#include <conio.h>
template<class T>
T tambah5(T x)
{
return (x+5);
}
int x;
float y;
cout << "Masukkan harga x (integer) : "; cin >> x;
cout << "Setelah masuk fungsi bernilai : " << tambah5(x) << endl;
cout << "Masukkan harga x (float) : "; cin >> y;
cout << "Setelah masuk fungsi bernilai : " << tambah5(y);
getch();
return 0;
}
Hasil: