Program Qbasic Looping

  •  qbasic
  • Kali ini saya akan memberikan contoh program qbasic dengan menggunakan looping atau perulangan.
    Kelebihan dari perulangan adalah kita dapat menjalankan perintah yang sama secara berulang tanpa harus menuliskan code yang sama, adapun kelebihan yang lain berdasarkan kondisi yang dibutuhkan.

    1. Struktur FOR-NEXT :

    FOR counter = start TO end [STEP]
    
        [Statement Block]
    
    NEXT counter

    2. Struktur WHILE-WEND :

    WHILE  [condition]
    
        [Statement Block]
    
    WEND

    3. Struktur DO-(WHILE/UNTIL) :

    Do (While/Until)  [condition]
    
        [Statement Block]
    
    Loop
    Do
    
        [Statement Block]
    
    Loop (While/Until) [condition]

    1. Contoh Program FOR-NEXT :

    CLS
    
    FOR counter = 1 TO 2 STEP 1
        PRINT "Ivans Ardiansyah"; counter
    NEXT counter
    
    END
    

    2. Contoh Program WHILE-WEND :

    CLS
    
    counter = 1
    
    WHILE  counter < 11
        PRINT "Ivans Ardiansyah"; counter
        counter = counter + 1
    WEND
    
    END
    

    3. Contoh Program DO-(WHILE/UNTIL) :

    CLS
    
    DO UNTIL counter < 10
        PRINT "Ivans Ardiansyah"; counter
        counter = counter + 1
    Loop
    
    END
    
    CLS
    
    Do
        PRINT "Ivans Ardiansyah"; counter
        counter = counter + 1
    Loop WHILE counter < 11
    
    END
    

    Output :

    Comments