Perulangan do - while


Perulangan Do While

Perulangan yg dikerjakan terlebih dahulu baru pengecekan kondisi

Contoh do –while

#include <stdio.h>
#include <conio.h>
#include <iostream.h>
main()
{
            int i;
            i=3;
            do
            {
                        cout<<"Nilai i="<<i<<endl;
                        i=i+1;
            }
            while (i<=2);
            getch();
}














Contoh while :

#include <stdio.h>
#include <iostream.h>
#include <conio.h>
main()
{
int i;
i=3;
while (i<=2)
{
cout<<"Nilai i="<<i<<endl;
i=i+1;
}
getch();
}

untuk hasil outpunya,, monggo di praktekkan sendiri ya... :p


First Design

oh yeah,, this is my first design,,,hhee
thankyou, for all my sista,, ukhti gia, fikana, nila, zaza, mardika,,
and my sister,, yg udh ngasih saran buat tata letaknya,,


walaupun cuma buat cover proposal,, tp ini permulaan yg menyenangkan,, soalnya udah berapa kali bikin tapi ga pernah selesai-selesai, hhee,, thankyou,,thankyou,, domo arigatougozaimasu,, for all my sista..

Statistik