Contoh Sourcode Perulangan (For, While, dan do while) Pemrograman C++

Contoh Sourcode Perulangan (For, While, dan do while) Pemrograman C++


Hello sobat🙋..
Berhubung lagi semangat-semangatnya😀 kali ini saya akan memberikan informasi tentang bahasa pemrograman C++ tentang PERULANGAN (for,while,do while).

Nah langsung saja di bawah ini adalah contoh sourcode Perulangan
tinggal copy paste di aplikasi devC++ langsung dah di save dan di running.
Cukup mudah bukan.😋

# include <iostream>

using namespace std;
int main (){
    int i, j, pilih;
   
    do {
        cout << "1. contoh perulangan for" << endl;
        cout << "2. contoh perulangan while" << endl;
        cout << "3. contoh perulangan do while" << endl;
        cout << "4. contoh perulangan while dengan continue" << endl;
        cout << "5. contoh perulangan while dengan break" << endl;
        cout << "6. contoh menampilkan simbol" << endl;
        cout << "0. selesai" << endl;
        cout << "dipilih: "; cin >> pilih;
        cout << endl;
       
        switch (pilih){
            case 0: cout << "selesai"; break;
            case 1:
                    cout << "contoh perulangan for: " << endl;
                    cout << "increament: " << endl;
                    for (i=0; i<=20; i++){
                    cout << i << " ";
                    }
                    cout << endl;
                    cout << "decriment: " << endl;
                    for (int n=15; n>=0; n--){
                    cout << n << " ";
                    }
                    cout << endl;
                    break;
            case 2:
                    cout << "contoh perulangan while: " << endl;
                    i=0;
                    while (i <=20){
                    cout << i << " ";
                    i++;
                    }
                    cout << endl;
                    break;
            case 3:
                    cout << "contoh perulangan do while: " << endl;
                    i=0;
                    do {
                    cout << i << " ";
                    i++;
                    } while (i <=20);
                    cout << endl;
                    break;
            case 4:
                    cout << "contoh perulangan while dengan continue: " << endl;
                    i=0;
                    while (i <=20){
                    i++;
                    if ((i & 2) == 0) continue;
                    cout << i << " ";
                    }
                    cout << endl;
                    break;
            case 5:
                    cout << "contoh perulangan while dengan break: " << endl;
                    i=0;
                    while (i <=20){
                    i++;
                    if (i == 12) break;
                    cout << i << " ";
                    }
                    cout << endl;
            case 6:
                    cout << "menampilkan simbol: " << endl;
                    int batas;
                    cout << "batas : "; cin >> batas;
                    for (i=1; i<=batas; i++){
                        if ((i % 2) != 0){
                            for (j=1; j<=(batas-i)/2; j++){
                                cout << " ";
                            }
                            for (j=1; j<=i; j++){
                                cout << endl;
                            }
                   
                        }   
                    }
                break;
            default: cout << "menu yang dipilih tidak ada";
        }
    } while (pilih != 0);
               
}


Jika sudah anda copy paste maka output atau tampilan yang keluar akan seperti gambar di bawah ini😊😉
Program ini ditujukan buat referensi anda yang bingung membuat algoritma PERULANGAN.
yasudah trimakasih ya sudah mau mampir ke blogg saya.
Mungkin akan  lebih banyak lagi contoh-contoh yang akan saya share di blogg ini.
Sekian dan terimakasih🙏🙏..
Semoga bermanfaat, karena berbagi itu indah😆😆
Jangan lupa Komen jika ada yang salah mungkin bisa saya bantu😝..

Share this

Related Posts

Previous
Next Post »