Cara Membuat Angka Genap di Borland C++

Cara Membuat Angka Genap di Borland C++


     
    Kali ini saya akan men-share sourcode Borland C++ untuk membuat anka genap, caranya mudah kok, Langsung saja liat sourcode nya di bawah...

#include <iostream.h>
#include <conio.h>

//program angka genap

main ()
{
int i,x;
cout<<"Masukkan Angka : ";cin>>x;
endl;
for (i=2;i<=x;i=i+2)
{
cout<<i;
if (i<(x-2)) cout<<",";
}

getch();
}

Mudah kan..., Terima Kasih Sudah Berkunjung
Jangan lupa komentar dan follow & Subscribe !
follow me on facebook  follow me on instagram   follow me on youtube   follow me on google plus   follow me on Twitter

Share this

Related Posts

Previous
Next Post »