#include
<iostream>
#include
<conio.h>
using
namespace std;
int
main()
{
int i, j, prima;
cout << "Nama : Angelia Saimin
" << endl
<< "NIM : 13013061" << endl
<< "Kelas: TIR 2.1"
<< endl << endl;
cout <<
"=====================================" << endl
<< " PROGRAM DERET BILANGAN
PRIMA" << endl
<<
"=====================================" << endl <<endl;
cout << "Bilangan Prima
1-100" << endl;
for (i=0;i<=100;i++)
{
prima=false;
if (i==2)
prima=true;
else
{
for (j=2;j<i;j++)
{
if (i % j==0)
{
prima=false;
break;
}
else
prima=true;
}
}
if (prima)
{
cout << i << " ,
";
}
}
cout << endl << endl <<
"Bilangan Prima 100-200" << endl;
for (i=100;i<=200;i++)
{
prima=false;
if (i==2)
prima=true;
else
{
for (j=2;j<i;j++)
{
if (i % j==0)
{
prima=false;
break;
}
else
prima=true;
}
}
if (prima)
{
cout << i << " ,
";
}
}
cout << endl << endl <<
"angelia-saimin.blogspot.com" << endl;
getch ();
0 komentar: