3
DEVITA SHIYAMAWATI 302/PRA-MIK/67/2014 KELAS A JUDUL :ALGORITMA KONVERSI DESIMAL KE BINER KAMUS bilangan : integer procedure decimaltobiner(bil:integer) kamus output: integer input: integer begin output <- bil mod 2 input <- bil div 2 if (input > 0) decimaltobiner(input) end if output(output) end ALGORITMA begin output("Masukkan bilangan desimal: ") input(bilangan) output("Dikonversi ke biner menjadi: ") decimaltobiner(bilangan) end JUDUL :ALGORITMA FIBONACCI KAMUS n : integer function fibonaci(n:integer)->integer Kamus output : integer begin

Recursif DEVITA

  • Upload
    ilkom12

  • View
    12

  • Download
    6

Embed Size (px)

DESCRIPTION

Ananlysis Algorithms

Citation preview

DEVITA SHIYAMAWATI

DEVITA SHIYAMAWATI

302/PRA-MIK/67/2014

KELAS A

JUDUL :ALGORITMA KONVERSI DESIMAL KE BINERKAMUS

bilangan : integer

procedure decimaltobiner(bil:integer)

kamus

output: integer

input: integer

begin

output integer

Kamus

output : integer

begin

if (n=2) then

output