Kode Program contoh perulangan while di Turbo C/C++

Hasil compiler dari program C/C++ contoh perulangan while di turbo c/c++

Pada artikel ini adalah membahas tentang program C/C++ untuk contoh looping while gambar diatas di turbo c/c++
langsung saja dibawah ini adalah kode program contoh perulangan while di Turbo c/c++
Source code :

#include "stdio.h"
#include "conio.h"
void main()
{  clrscr();
            int i=40,x;

            while (i>=1)
            { x=1;
            while (x<=i)
            {
              printf("*");
              x=x+1;

             }
             printf("\n");
             i=i-1;
            }
            getch();

}

Sekian artikel tentang kode program contoh perulangan while dibahasa pemrograman c/cplus plus, semoga bermanfaat :)

Share this

Related Posts

Previous
Next Post »