Thursday, 24 October 2013

Assalamu'alikum wr.wb
Perulangan pascal dengan while do sebagai contoh program bintang

1. Baris Program

Program Bintang;
Uses Crt;
Var
a,b:Integer;
Begin
Clrscr;
b:=1;
Write('Masukan Tinggi Segitiga:' );
Readln(a);
While b<=a do
Begin
 For b:= 1 to b do
 begin
 Write('*');
 end;
 b:=b+1;
 Writeln('');
 end;
 Writeln('');
 Readln;

End.

Output:




2. Baris Program

Program Bintang;
Uses Crt;
Var
a,b:Integer;
Begin
Clrscr;
b:=5;
Write('Masukan Tinggi Segitiga:' );
Readln(a);
While b>= 1 do
Begin
 For a:= b downto 1 do
 begin
 Write('*');
 end;
 b:=b-1;
 Writeln('');
 end;
 Readln;
End.

Output:



Wassalamu'alikum wr.wb.

1 comments:

  1. Ijin copas buat latihan,,,

    ReplyDelete
:) :)) ;(( :-) =)) ;( ;-( :d :-d @-) :p :o :>) (o) [-( :-? (p) :-s (m) 8-) :-t :-b b-( :-# =p~ $-) (b) (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.