Cara Membuat Angka Ganjil di Borland C++

Cara Membuat Angka Ganjil di Borland C++


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

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

//program angka ganjil

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

getch();
}

Mudah kan..., Terima Kasih Sudah Berkunjung
Jangan lupa komentar dan follow & Subcribe !
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 »