facebook rss daftar isi halaman depan

Laman

Jumat, 19 November 2010

materi pascal

http://www.pascal-central.com/pasbooks.htmlhttp://www.amazon.com/gp/product/0826454291/qid=1148329085/sr=2-2/ref=pd_bbs_b_2_2/102-9320606-8016940?s=books&v=glance&n=283155http://en.wikipedia.org/wiki/Pascal_%28programming_language%29http://...
baca - materi pascal

Sabtu, 06 November 2010

pascal 1

Program StructureThe Pascal programming language has several important words in it. These are called keywords. In example programs keywords will be displayed in bold. This lesson will teach you some basic keywords and structure of your pascal programs.It...
baca - pascal 1

ip-pascal

OverviewIP Pascal implements the language "Pascaline" (named after Blaise Pascal's calculator), which is a highly extended superset of ISO 7185 Pascal. It adds modularity with namespace control, including the parallel tasking monitor concept, dynamic...
baca - ip-pascal

bahasa pascal

Control structuresStatements for building control structures are roughly analogous and relatively similar (at least the first three).Pascal has: * if cond then stmt else stmt * while cond do stmt * repeat stmt until cond * for id := expr...
baca - bahasa pascal

code-code pascal

Precedence levelsThe languages differ significantly when it comes to expression evaluation, C (although not fully comparable) has almost four times as many precedence levels as Pascal.Pascal has four levels: 1. Logical negation: not 2. Multiplicative:...
baca - code-code pascal

tingkat lanjut

const minlist = 1; maxlist = 5; maxword = 7; type listrange = minlist .. maxlist; wordrange = 1..maxword; word = record contents: packed array [wordrange] of char; length: wordrange end; wordlist = array[listrange] of word;var i: integer;...
baca - tingkat lanjut

latihan dasar

program HelloWorld(output);begin Writeln('Hello world!')e...
baca - latihan dasar

array

ArraysArrays are an important part of Pascal. You can think of them like a catalogue of information. Arrays are declared under the type section. They are a collection of a number of variables, arranged in the form of a table.type integerArray =...
baca - array