Download Game GTA San Andreas

Anda yang belum pernah mencoba dan ingin mencoba anda bisa download disini.

Download Football Manager 2012

Football Manager is a game that puts on setting strategy tactics as well, where we act as a manager that controls most of the conditions of the team.

Download Game Angry Birds Seasons 2

Angry birds is a game's most sought, which this game don't spend a lot of memory but sufficient to hone our brain. Angry birds Seasons 2 an extension from Angry Birds Version Rio.

Download Game PES 2012

Download Game PES 2012

This is default featured slide 5 title

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

Tampilkan postingan dengan label Pemrograman. Tampilkan semua postingan
Tampilkan postingan dengan label Pemrograman. Tampilkan semua postingan

Selasa, 22 November 2011

contoh program TPW

Hari ini saya akan memberikan sedikit ilmu bagi temen - temen semua, yaitu bagaimana cara membuat program "menghitung luas segitiga" di TPW 1.5 ...
gini nih temen - temen sourch codenya :

program luassegitiga;
uses wincrt;
var
luas : real;
a,t : integer;
begin
clrscr;
write(‘Masukkan Alas : ’);readln(a);
write(‘Masukkan Tinggi : ’);readln(t);
luas := 0.5 * a * t;
writeln(‘Luas Segitiga adalah :’,luas:2:1);readln;
end.

Mudah kan.. Selamat Mencoba !!!