Presentasi sedang didownload. Silahkan tunggu

Presentasi sedang didownload. Silahkan tunggu

PERTEMUAN 5 PENYELEKSIAN KONDISI.

Presentasi serupa


Presentasi berjudul: "PERTEMUAN 5 PENYELEKSIAN KONDISI."— Transcript presentasi:

1 PERTEMUAN 5 PENYELEKSIAN KONDISI

2 STATEMENT IF Bentuk Umum IF if (kondisi) statemen;
Cat : Sintak dari kondisi yang diseleksi harus ditulis diantara tanda kurung Contoh : (satu kasus) input a, b if (a < b) then write a Bentuk Umum IF - ELSE if (kondisi) statemen1; else statemen2; Contoh : dua kasus input a, b if (a < b) then write a else write b

3 Bentuk Umum IF - ELSE - IF … ELSE if (kondisi1) statement;
…. else statement; Deskripsi input nilai if (nilai  80) then write grade A, else if (nilai  70) then write grade B, else if (nilai  55) then write grade C, else if (nilai  40) then write grade D, else Write Grade E

4 Bentuk Umum IF Bersarang if (kondisi1) if (kondisi2) ….
Deskripsi input a dan b if (a < 10) if (b > 8) then { c  a + b wite (c) } else { c  a – b write (c) } else { c  a * b Bentuk Umum IF Bersarang if (kondisi1) if (kondisi2) …. if (kondisi-n) statemen; else statement;

5 Statemen Switch switch (kondisi) { case konstanta1 : statement; break; case konstanta2 : statement : ……. default : statemen }


Download ppt "PERTEMUAN 5 PENYELEKSIAN KONDISI."

Presentasi serupa


Iklan oleh Google