Perulangan WHILE DO dalam Pascal: Difference between revisions
No edit summary |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 5: | Line 5: | ||
Berikut format dasar penulisan perulangan WHILE DO dalam bahasa pemrograman PASCAL: | Berikut format dasar penulisan perulangan WHILE DO dalam bahasa pemrograman PASCAL: | ||
WHILE (condition) DO | WHILE (condition) DO | ||
begin | begin | ||
| Line 17: | Line 16: | ||
===Contoh 1=== | ===Contoh 1=== | ||
program while_do; | program while_do; | ||
uses crt; | uses crt; | ||
| Line 53: | Line 51: | ||
===Contoh 2=== | ===Contoh 2=== | ||
program while_do; | program while_do; | ||
uses crt; | uses crt; | ||
| Line 75: | Line 72: | ||
*[[Logika Perulangan WHILE DO Pascal]] | *[[Logika Perulangan WHILE DO Pascal]] | ||
== | ==Source== | ||
*[https:// | *[https://www.duniailkom.com/tutorial-belajar-pascal-perulangan-while-do-dalam-pascal/ duniailkom.com] | ||
[[Category:Pascal]] | [[Category:Pascal]] | ||