LP3I KEPRI BENGKONG

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

ARMAN BASRI 0852 6552 2100

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

JURUSAN INFORMATIKA KOMPUTER

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

GO AHEAD LP3I KEPRI

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

ARMAN BASRI I T LP3I KEPRI BATAM

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Kamis, 23 Mei 2013

PROGRAM FIBONACCI PADA PASCAL

program fibonacci;
uses crt;
var
x,y,z,n,i:integer;
begin
clrscr;
write(masukkan nilai:');readln(n)
x:=0;
y:=1;
z:=1;
i:=1;
while (i<=n) do
       begin
           write(z,' ');
           i:=i+1;
           z:=x+y;
           x:=y;
           y:=z;
readln;

end.