menu

Sabtu, 10 September 2016

program 1.3 tentang fungsi template mnggu ke-1

#include <iostream>
using namespace std;
template<class T>
T abc(T a, T b, T c){
 return a+b+b*c+(a+b-c)/(a+b)+4;       
}


main(){
cout<<abc(2.,3.,4.)<<endl; //bila ditambah titk dia mnjadi bertipe float
cout<<endl;
cout<<abc(2,3,4)<<endl; // 2,3,4 akan bertipe integer    
}

output

Tidak ada komentar:

Posting Komentar