1 / 7

STRUKTUR PERULANGAN ( LOOPING )

STRUKTUR PERULANGAN ( LOOPING ). Bentuk Umum: for ( ungkapan_1 ; ungkapan_2 ; ungkapan_3 ) pernyataan ;. STATEMENT FOR. Keterangan : Ungkapan_1, merupakan inisialisasi variabel kendali kalang. Ungkapan_2, merupakan kondisi yang menentukan pengulangan atau

calum
Download Presentation

STRUKTUR PERULANGAN ( LOOPING )

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. STRUKTUR PERULANGAN(LOOPING)

  2. Bentuk Umum: for ( ungkapan_1; ungkapan_2; ungkapan_3) pernyataan; STATEMENT FOR • Keterangan : • Ungkapan_1, merupakan inisialisasi variabel kendali kalang. • Ungkapan_2, merupakan kondisi yang menentukan pengulangan atau • merupakan Tes kelanjutan kalang. • Ungkapan_3, merupakan pengatur / pemodifikasi nilai variabel • kendali kalang. • Pernyataan, merupakan pernyataan yang akan di ulang

  3. #include<iostream.h> int main() { intI,awal,akhir,step; cout<<"MENAMPILKAN DERET BILANGAN" <<endl; cout<<"__________________________"<<endl; cout<<"MasukanBilanganPertama :";cin>>awal; cout<<"MasukanBilanganTerakhir :";cin>>akhir; cout<<"MasukanJumlahPertambahan:";cin>>step; for(I=awal;I<=akhir;I=I+step) cout<<I<<endl; return 0; }

  4. #include<iostream.h> int main() { int I,awal,akhir,jumlah; jumlah=0; cout<<"MENGHITUNG JUMLAH BILANGAN" <<endl; cout<<"__________________________"<<endl; cout<<"Masukan Bilangan Pertama :";cin>>awal; cout<<"Masukan Bilangan Terakhir :";cin>>akhir; for(I=awal;I<=akhir;I++) jumlah=jumlah+I; cout <<endl<<"Jumlah bilangan dari "<< awal << " sampai " <<akhir <<" adalah = "<<jumlah ; return 0; }

  5. For bersarang (nested for) Adalah penyataan for yang berada didalam pernyataan for yang lain #include<iostream.h> #include<conio.h> int main( ) { int I,J,K; clrscr( ); cout <<"MENAMPILKAN DERET BILANGAN BERULANG-ULANG"<<endl; cout<<"__________________________________________"<<endl; cout <<"MASUKAN BILANGAN TERAKHIR = :";cin>>I; cout <<endl; for(J=1;J<=I;J++) { for(K=1;K<=J;K++) cout<<" "<<K; cout <<"\n"; } return 0; }

  6. #include <iostream.h> main() { int a,b,e; char u[26]= "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; cout<<"Masukan Angka : "; cin>>e; for(b = 0; b< e; b++){ for(a = 0; a<= b; a++){ cout<<u[a]<<" ";} cout<<endl;} return 0; }

  7. #include<iostream.h> #include<iomanip.h> int main() { intx,y; for (x=1; x<=10; x++) { for (y=1; y<=x; y++) { cout<<setw(4)<<x*y<<" "; } cout<<"\n"; } return 0; }

More Related