COMBINATION  PROGRAM

COMBINATION PROGRAM

The combination is to combine several objects from a group without regard to order . In combination , the order is not considered. ...
PERMUTATION  PROGRAM

PERMUTATION PROGRAM

Permutation is to combine several objects from a group with respect to the order . In the permutation , the order observed . { 1,2...
Program Mencari KPK dari bilangan integer

Program Mencari KPK dari bilangan integer

Deskripsi     a,b              : integer     nilai              : integer Deklarasi     for i ==  1 to b do     nilai = nilai + a     i...
Program untuk Mencari Nilai Kuadrat

Program untuk Mencari Nilai Kuadrat

Deklarasi:           Kuadrat(Y,X): integer           if(x==1)                  else              return y*kuadrat(y,x-1);        Output: H...
Program Membalik Angka

Program Membalik Angka

Deklarasi:                 Balik,tempat,n: integer Deklarasi:           temp = temp * 10 + n % 10;           if (temp == 0) cout << ...
(Class) Menghitung Jumlah Deret

(Class) Menghitung Jumlah Deret

#include <cstdlib> #include <iostream> using namespace std; class hitung {       public:        int proses();        v...