Membuat deret bilangan prima dengan C++

Inti dari bilangan prima adalah bilangan yang hanya habis dibagi 1 dan bilangan itu sendiri,,,
langsung saja berikut adalah kode program yang dicompile dengan Borland C++:


//Program Deret Bilangan Prima

#include <iostream>
#include <conio>


main(){
int input,hitung=0,i=1,b=2;

cout<<"Inputkan Angka = ";cin>>input;
if (b==2)
          {cout<<b<<" ";
         b++;
         i++;}
while (i<=input)
    {
   for (int z=2;z<b;z++)
       {

      if (b%z==0)
          {hitung++;}
      }
      if (hitung==0)
      {cout<<b<<" ";
      i++;
      b++;}
      if (hitung>0)
      {b++;
      hitung=0;}

   }
getch();
}

DOWNLOAD
These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Furl
  • Reddit
  • Spurl
  • StumbleUpon
  • Technorati

Leave a comment