Kode Program cetak bilangan genap di Turbo C/C++



Pada artikel ini adalah membahas tentang program C/C++ untuk cetak bilangan genap diturbo c/c++
Hasil compiler dari program C/C++ untuk cetak bilangan genap di Turbo C/C++






langsung saja dibawah ini adalah kode program struct login.
Source code :
#include "stdio.h"
#include "conio.h"
void main()
{       int bil;
            clrscr();
            for (bil=1;bil<300;bil++)
            { if(bil % 2 == 0)
                        printf("%5.0i",bil);
                                          
            }
   printf("\n================================================================================");
   printf("\n|                             BAHASA PEMROGRAMAN C/C++                         |");
   printf("\n================================================================================");
            getch();
}
Sekian artikel tentang kode program cetak bilangan genap dibahasa pemrograman c/cplus plus, semoga bermanfaat,jangan lupa koment :)

Share this

Related Posts

Previous
Next Post »