Pages

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Kamis, 14 Juni 2012

PASCAL MENENTUKAN BILANGAN GANJIL ATAU GENAP DENGAN IF-ELSE

Program nilai_genap_ganjil; uses wincrt; var    a, sisa : integer;    ket : string; Begin clrscr; Write ('Masukan Nilai = '); Readln (A); sisa := a mod 2; writeln('sisa = ',sisa); if sisa = 0 then     ket := 'Genap' else     ket := 'Ganjil'; writeln ('Jadi nilai adalah = ',ket); readln; end....