1 / 5

RUNTUNAN

RUNTUNAN. Chapter 5 – Algoritma dan Permrograman Eka Ardhianto FTI - Unisbank. Pendahuluan. Tiap instruksi dikerjakan satu per satu Model Algoritma “ squence “ Tiap instruksi diakhiri dengan tanda “ ; “ Tidak ada instruksi yang di ulang

dai
Download Presentation

RUNTUNAN

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. RUNTUNAN Chapter 5 – AlgoritmadanPermrograman EkaArdhianto FTI - Unisbank

  2. Pendahuluan Tiapinstruksidikerjakansatu per satu Model Algoritma “ squence “ Tiapinstruksidiakhiridengantanda “ ; “ Tidakadainstruksi yang diulang Akhirinstruksimerupakanakhiralgoritma

  3. START Contoh START A, B, Temp = 0; Tuliskanalgoritmauntukmambacaduabuahnilaidenganpeubah (variabel) A dan B, kemudian value-nyaditukar value A menjadi B dan value B menjadi A // Program Pertukaran // Deklarasi :A, B, Temp : integer; Algoritma :read(A,B);Temp  A;A  B;B  A;cetak (A,B); A, B, Temp = 0; Read (A, B) Read (A, B) Temp = A; A = B; Temp = A; A = B; B = Temp; B = Temp; Write (A, B) Write (A, B) STOP STOP

  4. Tuliskanalgoritmauntukmambacaduabuahnilaidenganpeubah (variabel) A dan B, kemudian value-nyaditukar value A menjadi B dan value B menjadi A Catatan : Tidakbolehmenggunakanvariabeltambahan // Program Pertukaran // Deklarasi :A, B, Temp : integer; Algoritma :read(A,B);A  A + B;B  A - B;A  A - B;cetak (A,B);

  5. Tuliskanalgoritmauntukprosesberikutini :- Input berupadetik- Output : Jam : Menit : Detik Tuliskanalgoritmauntukprosesberikutini :- Input berupahari- Output : Tahun: Bulan: Hari Tuliskanalgoritmauntukmengkonversinilaiuangmenjadijumlahuangkertas Contoh : Input : 12500 Output :10000 : 1 lembar2000 : 1 lembar500 : 1 koin Input : 43250 Output :20000 : 2 lembar2000 : 1 lembar1000 : 1 lembar200 : 1 koin50 : 1 koin

More Related