Iklan

Sunday 10 January 2010

Jawaban Looping

Jumlah PR yang terkumpul 86. Sementara saya periksa, ini jawabannya.

1. ini definisi looping:

A loop is a group of programming statements that are executed repeatedly. Loops provide an effective tool for processing large amounts of data.

dari wikipedia:
A loop is a sequence of statements which is specified once but which may be carried out several times in succession.

2. Untuk dijadikan referensi berapa kali pengulangan dilakukan. (Counter) atau pengulangan dilakukan terus menerus sampai kondisi terpenuhi.

dari wikipedia:
a loop counter is the term often used to refer to the variable that controls the iterations of a loop

3. For ... Next,
Do ... Loop While ...,
Do ... Loop Until ...,
While ... End while,
Do Until ... Loop,
Do While ... Loop

4.
for x as integer = 10 to -10 step -1
textbox1.text = textbox1.text & x & controlchars.newline
next x

5. Agar dapat turun baris di dalam property text pada objek tertentu.

No comments:

Post a Comment