1 / 10

Bab 5

Bab 5. Pengulangan. Pengulangan. Pengulangan adalah suatu proses yang melakukan statemen-statemen dalam sebuah program secara terus-menerus sampai terdapat kondisi untuk menghentikannya. Dalam bahasa C++ ada 3 jenis struktur pengulangan, yaitu struktur for , while , dan do-while.

taipa
Download Presentation

Bab 5

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. Bab 5 Pengulangan

  2. Pengulangan • Pengulangan adalah suatu proses yang melakukan statemen-statemen dalam sebuah program secara terus-menerus sampai terdapat kondisi untuk menghentikannya. • Dalam bahasa C++ ada 3 jenis struktur pengulangan, yaitu struktur for, while, dan do-while

  3. Struktur for for (variabel= nilai awal; kondisi; variabel++) { Statement yang akan diulang #include <iostream> using namespace std; int main() { int C; for (C=0;C<10;C++) { cout<<“Saya suka nasi goreng”<<endl; } return 0; }

  4. Kode Program 5-5 #include <iostream> using namespace std; int main() { for (int C=0; C<25; C=C+5) { cout<<C<<endl; } return 0; }

  5. Struktur for dengan banyak variabel #include <iostream> using namespace std; int main() { char A; int B; int C; for (A='a',B=0, C=1; A<='c'; A++, B=B+5, C=C*2) { cout<<"Nilai A = "<<A<<endl; cout<<"Nilai B = "<<B<<endl; cout<<"Nilai C = "<<C<<endl; } return 0; }

  6. Struktur for Bersarang (5-7) #include <iostream> using namespace std; int main() { for (int j=1; j<=10; j++) { for (int k=1; k<=j; k++) { cout<<k*j<<' '; } cout<<endl; } return 0; }

  7. Struktur while (5-10) #include <iostream> using namespace std; int main() { int BIL, C; long faktorial; faktorial = 1; cout<<"Masukkan bilangan: ";cin>>BIL; C = BIL; cout<<C<<"! = "; while (C >= 1) { faktorial = faktorial * C; if (C != 1) { cout<<C<<" x "; } else { cout<<C<<" = "; } C--; } cout<<faktorial; return 0; }

  8. Struktur while(5-11) #include <iostream> using namespace std; int main() { int J = 10; int K; while (J >= 1) { K = 1; while (K <= J) { cout<<K*J<<' '; K++; } cout<<endl; J--; } return 0; }

  9. Struktur do-while(5-11) • while: pengecekan kondisi di awal • do-while: pengecekan kondisi di akhir do { statemen yang akan diulang; } while (kondisi)

  10. Statemen Peloncatan • break : menghentikan proses pengulangan dan meloncat ke bawah blok pengulangan • continue : melanjutkan proses pengulangan • goto : menuju Label (lokasi) tertentu • exit() : keluar dari program (terminasi)

More Related