- Program mengubah bentuk perkalian(a,n) ke dalam bentuk penjumlahan secara rekursif.
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int tambah(int a, int b){
if(b<=1) return a;
else return a+tambah(a,b-1);
}
int main(int argc, char** argv) {
int i,j;
cin>>i>>j;
cout<<tambah(i,j);
return 0;
}
EmoticonEmoticon